- Timestamp:
-
Sep 25, 2013, 12:51:54 PM (12 years ago)
- Author:
-
ksuehring
- Comment:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
-
- Property Cc jct-vc@… added
-
initial
|
v2
|
|
1 | 1 | In HM12.0+Rext-4.1, a warning is sent out when transformSkipLog2MaxSize != 2. |
2 | 2 | |
| 3 | {{{ |
3 | 4 | if (m_transformSkipLog2MaxSize!=2 && m_useTransformSkipFast) |
4 | 5 | { |
… |
… |
|
9 | 10 | fprintf(stderr, "***************************************************************************\n"); |
10 | 11 | } |
| 12 | }}} |
11 | 13 | |
12 | 14 | That is, to enable transformSkip on large TU sizes, the transformSkipFast should be disabled. Otherwise, transformSkip only works when PU is NxN. However, only a warning is given. Some people may not notice this point in their simulations. |
… |
… |
|
14 | 16 | I suggest modify m_useTransformSkipFast to be false when m_transformSkipLog2MaxSize!=2. That is, |
15 | 17 | |
| 18 | {{{ |
16 | 19 | if (m_transformSkipLog2MaxSize!=2 && m_useTransformSkipFast) |
17 | 20 | { |
… |
… |
|
22 | 25 | fprintf(stderr, "***************************************************************************\n"); |
23 | 26 | } |
| 27 | }}} |
| This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant - David Flynn(Subscriber, Participant)
- Frank Bossen(Participant)
- jct-vc@…(Subscriber)
- Karl Sharman(Participant)
- karl.sharman@…(Always)
- Karsten Suehring(Participant, Always)
|