95 | 360k | } Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) void jxl::N_AVX2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 5.76k | pixel_type* out2, size_t w) { | 33 | 5.76k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 5.76k | "Invalid transform type"); | 35 | 5.76k | int second = transform_type >> 1; | 36 | 5.76k | int third = transform_type & 1; | 37 | | | 38 | 5.76k | size_t x = 0; | 39 | 5.76k | const HWY_FULL(pixel_type) d; | 40 | 5.76k | const size_t N = Lanes(d); | 41 | 72.7k | for (; x + N - 1 < w; x += N) { | 42 | 66.9k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 66.9k | } else { | 54 | 66.9k | auto First = Load(d, in0 + x); | 55 | 66.9k | auto Second = Load(d, in1 + x); | 56 | 66.9k | auto Third = Load(d, in2 + x); | 57 | 66.9k | if (third) Third = Add(Third, First); | 58 | 66.9k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 66.9k | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 66.9k | Store(First, d, out0 + x); | 64 | 66.9k | Store(Second, d, out1 + x); | 65 | 66.9k | Store(Third, d, out2 + x); | 66 | 66.9k | } | 67 | 66.9k | } | 68 | 16.5k | for (; x < w; x++) { | 69 | 10.7k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 10.7k | } else { | 81 | 10.7k | pixel_type First = in0[x]; | 82 | 10.7k | pixel_type Second = in1[x]; | 83 | 10.7k | pixel_type Third = in2[x]; | 84 | 10.7k | if (third) Third = PixelAdd(Third, First); | 85 | 10.7k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 10.7k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 10.7k | out0[x] = First; | 91 | 10.7k | out1[x] = Second; | 92 | 10.7k | out2[x] = Third; | 93 | 10.7k | } | 94 | 10.7k | } | 95 | 5.76k | } |
void jxl::N_AVX2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 5.17k | pixel_type* out2, size_t w) { | 33 | 5.17k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 5.17k | "Invalid transform type"); | 35 | 5.17k | int second = transform_type >> 1; | 36 | 5.17k | int third = transform_type & 1; | 37 | | | 38 | 5.17k | size_t x = 0; | 39 | 5.17k | const HWY_FULL(pixel_type) d; | 40 | 5.17k | const size_t N = Lanes(d); | 41 | 90.6k | for (; x + N - 1 < w; x += N) { | 42 | 85.4k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 85.4k | } else { | 54 | 85.4k | auto First = Load(d, in0 + x); | 55 | 85.4k | auto Second = Load(d, in1 + x); | 56 | 85.4k | auto Third = Load(d, in2 + x); | 57 | 85.4k | if (third) Third = Add(Third, First); | 58 | 85.4k | if (second == 1) { | 59 | 85.4k | Second = Add(Second, First); | 60 | 85.4k | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 85.4k | Store(First, d, out0 + x); | 64 | 85.4k | Store(Second, d, out1 + x); | 65 | 85.4k | Store(Third, d, out2 + x); | 66 | 85.4k | } | 67 | 85.4k | } | 68 | 10.6k | for (; x < w; x++) { | 69 | 5.52k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 5.52k | } else { | 81 | 5.52k | pixel_type First = in0[x]; | 82 | 5.52k | pixel_type Second = in1[x]; | 83 | 5.52k | pixel_type Third = in2[x]; | 84 | 5.52k | if (third) Third = PixelAdd(Third, First); | 85 | 5.52k | if (second == 1) { | 86 | 5.52k | Second = PixelAdd(Second, First); | 87 | 5.52k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 5.52k | out0[x] = First; | 91 | 5.52k | out1[x] = Second; | 92 | 5.52k | out2[x] = Third; | 93 | 5.52k | } | 94 | 5.52k | } | 95 | 5.17k | } |
void jxl::N_AVX2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 65.3k | pixel_type* out2, size_t w) { | 33 | 65.3k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 65.3k | "Invalid transform type"); | 35 | 65.3k | int second = transform_type >> 1; | 36 | 65.3k | int third = transform_type & 1; | 37 | | | 38 | 65.3k | size_t x = 0; | 39 | 65.3k | const HWY_FULL(pixel_type) d; | 40 | 65.3k | const size_t N = Lanes(d); | 41 | 1.55M | for (; x + N - 1 < w; x += N) { | 42 | 1.48M | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 1.48M | } else { | 54 | 1.48M | auto First = Load(d, in0 + x); | 55 | 1.48M | auto Second = Load(d, in1 + x); | 56 | 1.48M | auto Third = Load(d, in2 + x); | 57 | 1.48M | if (third) Third = Add(Third, First); | 58 | 1.48M | if (second == 1) { | 59 | 1.48M | Second = Add(Second, First); | 60 | 1.48M | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 1.48M | Store(First, d, out0 + x); | 64 | 1.48M | Store(Second, d, out1 + x); | 65 | 1.48M | Store(Third, d, out2 + x); | 66 | 1.48M | } | 67 | 1.48M | } | 68 | 118k | for (; x < w; x++) { | 69 | 53.2k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 53.2k | } else { | 81 | 53.2k | pixel_type First = in0[x]; | 82 | 53.2k | pixel_type Second = in1[x]; | 83 | 53.2k | pixel_type Third = in2[x]; | 84 | 53.2k | if (third) Third = PixelAdd(Third, First); | 85 | 53.2k | if (second == 1) { | 86 | 53.2k | Second = PixelAdd(Second, First); | 87 | 53.2k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 53.2k | out0[x] = First; | 91 | 53.2k | out1[x] = Second; | 92 | 53.2k | out2[x] = Third; | 93 | 53.2k | } | 94 | 53.2k | } | 95 | 65.3k | } |
void jxl::N_AVX2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 6.88k | pixel_type* out2, size_t w) { | 33 | 6.88k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 6.88k | "Invalid transform type"); | 35 | 6.88k | int second = transform_type >> 1; | 36 | 6.88k | int third = transform_type & 1; | 37 | | | 38 | 6.88k | size_t x = 0; | 39 | 6.88k | const HWY_FULL(pixel_type) d; | 40 | 6.88k | const size_t N = Lanes(d); | 41 | 206k | for (; x + N - 1 < w; x += N) { | 42 | 200k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 200k | } else { | 54 | 200k | auto First = Load(d, in0 + x); | 55 | 200k | auto Second = Load(d, in1 + x); | 56 | 200k | auto Third = Load(d, in2 + x); | 57 | 200k | if (third) Third = Add(Third, First); | 58 | 200k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 200k | } else if (second == 2) { | 61 | 200k | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 200k | } | 63 | 200k | Store(First, d, out0 + x); | 64 | 200k | Store(Second, d, out1 + x); | 65 | 200k | Store(Third, d, out2 + x); | 66 | 200k | } | 67 | 200k | } | 68 | 21.5k | for (; x < w; x++) { | 69 | 14.6k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 14.6k | } else { | 81 | 14.6k | pixel_type First = in0[x]; | 82 | 14.6k | pixel_type Second = in1[x]; | 83 | 14.6k | pixel_type Third = in2[x]; | 84 | 14.6k | if (third) Third = PixelAdd(Third, First); | 85 | 14.6k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 14.6k | } else if (second == 2) { | 88 | 14.6k | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 14.6k | } | 90 | 14.6k | out0[x] = First; | 91 | 14.6k | out1[x] = Second; | 92 | 14.6k | out2[x] = Third; | 93 | 14.6k | } | 94 | 14.6k | } | 95 | 6.88k | } |
void jxl::N_AVX2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 20.1k | pixel_type* out2, size_t w) { | 33 | 20.1k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 20.1k | "Invalid transform type"); | 35 | 20.1k | int second = transform_type >> 1; | 36 | 20.1k | int third = transform_type & 1; | 37 | | | 38 | 20.1k | size_t x = 0; | 39 | 20.1k | const HWY_FULL(pixel_type) d; | 40 | 20.1k | const size_t N = Lanes(d); | 41 | 342k | for (; x + N - 1 < w; x += N) { | 42 | 322k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 322k | } else { | 54 | 322k | auto First = Load(d, in0 + x); | 55 | 322k | auto Second = Load(d, in1 + x); | 56 | 322k | auto Third = Load(d, in2 + x); | 57 | 322k | if (third) Third = Add(Third, First); | 58 | 322k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 322k | } else if (second == 2) { | 61 | 322k | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 322k | } | 63 | 322k | Store(First, d, out0 + x); | 64 | 322k | Store(Second, d, out1 + x); | 65 | 322k | Store(Third, d, out2 + x); | 66 | 322k | } | 67 | 322k | } | 68 | 32.1k | for (; x < w; x++) { | 69 | 11.9k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 11.9k | } else { | 81 | 11.9k | pixel_type First = in0[x]; | 82 | 11.9k | pixel_type Second = in1[x]; | 83 | 11.9k | pixel_type Third = in2[x]; | 84 | 11.9k | if (third) Third = PixelAdd(Third, First); | 85 | 11.9k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 11.9k | } else if (second == 2) { | 88 | 11.9k | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 11.9k | } | 90 | 11.9k | out0[x] = First; | 91 | 11.9k | out1[x] = Second; | 92 | 11.9k | out2[x] = Third; | 93 | 11.9k | } | 94 | 11.9k | } | 95 | 20.1k | } |
void jxl::N_AVX2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 256k | pixel_type* out2, size_t w) { | 33 | 256k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 256k | "Invalid transform type"); | 35 | 256k | int second = transform_type >> 1; | 36 | 256k | int third = transform_type & 1; | 37 | | | 38 | 256k | size_t x = 0; | 39 | 256k | const HWY_FULL(pixel_type) d; | 40 | 256k | const size_t N = Lanes(d); | 41 | 1.75M | for (; x + N - 1 < w; x += N) { | 42 | 1.49M | if (transform_type == 6) { | 43 | 1.49M | auto Y = Load(d, in0 + x); | 44 | 1.49M | auto Co = Load(d, in1 + x); | 45 | 1.49M | auto Cg = Load(d, in2 + x); | 46 | 1.49M | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 1.49M | auto G = Add(Cg, Y); | 48 | 1.49M | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 1.49M | auto R = Add(Y, Co); | 50 | 1.49M | Store(R, d, out0 + x); | 51 | 1.49M | Store(G, d, out1 + x); | 52 | 1.49M | Store(Y, d, out2 + x); | 53 | 1.49M | } else { | 54 | 0 | auto First = Load(d, in0 + x); | 55 | 0 | auto Second = Load(d, in1 + x); | 56 | 0 | auto Third = Load(d, in2 + x); | 57 | 0 | if (third) Third = Add(Third, First); | 58 | 0 | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 0 | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 0 | Store(First, d, out0 + x); | 64 | 0 | Store(Second, d, out1 + x); | 65 | 0 | Store(Third, d, out2 + x); | 66 | 0 | } | 67 | 1.49M | } | 68 | 834k | for (; x < w; x++) { | 69 | 577k | if (transform_type == 6) { | 70 | 577k | pixel_type Y = in0[x]; | 71 | 577k | pixel_type Co = in1[x]; | 72 | 577k | pixel_type Cg = in2[x]; | 73 | 577k | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 577k | pixel_type G = PixelAdd(Cg, tmp); | 75 | 577k | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 577k | pixel_type R = PixelAdd(B, Co); | 77 | 577k | out0[x] = R; | 78 | 577k | out1[x] = G; | 79 | 577k | out2[x] = B; | 80 | 577k | } else { | 81 | 0 | pixel_type First = in0[x]; | 82 | 0 | pixel_type Second = in1[x]; | 83 | 0 | pixel_type Third = in2[x]; | 84 | 0 | if (third) Third = PixelAdd(Third, First); | 85 | 0 | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 0 | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 0 | out0[x] = First; | 91 | 0 | out1[x] = Second; | 92 | 0 | out2[x] = Third; | 93 | 0 | } | 94 | 577k | } | 95 | 256k | } |
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) |