64 | 2.92M | } Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 328k | const size_t output_stride, float* scratch) { | 40 | 328k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 328k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 328k | float* block = scratch; | 43 | 328k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 328k | } else { | 52 | 656k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 984k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 656k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 656k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 656k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 656k | } | 58 | 328k | } | 59 | 328k | } | 60 | | | 61 | 328k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 328k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 328k | scratch_space); | 64 | 328k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 454k | const size_t output_stride, float* scratch) { | 40 | 454k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 454k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 454k | float* block = scratch; | 43 | 454k | if (ROWS < COLS) { | 44 | 909k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 1.36M | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 909k | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 909k | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 909k | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 909k | } | 50 | 454k | } | 51 | 454k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 454k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 454k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 454k | scratch_space); | 64 | 454k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 193k | const size_t output_stride, float* scratch) { | 40 | 193k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 193k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 193k | float* block = scratch; | 43 | 193k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 193k | } else { | 52 | 579k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 1.15M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 772k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 772k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 772k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 772k | } | 58 | 386k | } | 59 | 193k | } | 60 | | | 61 | 193k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 193k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 193k | scratch_space); | 64 | 193k | } |
Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 89.7k | const size_t output_stride, float* scratch) { | 40 | 89.7k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 89.7k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 89.7k | float* block = scratch; | 43 | 89.7k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 89.7k | } else { | 52 | 269k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 897k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 717k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 717k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 717k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 717k | } | 58 | 179k | } | 59 | 89.7k | } | 60 | | | 61 | 89.7k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 89.7k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 89.7k | scratch_space); | 64 | 89.7k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 143k | const size_t output_stride, float* scratch) { | 40 | 143k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 143k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 143k | float* block = scratch; | 43 | 143k | if (ROWS < COLS) { | 44 | 431k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 1.43M | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 1.14M | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 1.14M | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 1.14M | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 1.14M | } | 50 | 287k | } | 51 | 143k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 143k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 143k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 143k | scratch_space); | 64 | 143k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 198k | const size_t output_stride, float* scratch) { | 40 | 198k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 198k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 198k | float* block = scratch; | 43 | 198k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 198k | } else { | 52 | 993k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 3.97M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 3.18M | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 3.18M | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 3.18M | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 3.18M | } | 58 | 795k | } | 59 | 198k | } | 60 | | | 61 | 198k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 198k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 198k | scratch_space); | 64 | 198k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 6.19k | const size_t output_stride, float* scratch) { | 40 | 6.19k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 6.19k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 6.19k | float* block = scratch; | 43 | 6.19k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 6.19k | } else { | 52 | 30.9k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 223k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 198k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 198k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 198k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 198k | } | 58 | 24.7k | } | 59 | 6.19k | } | 60 | | | 61 | 6.19k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 6.19k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 6.19k | scratch_space); | 64 | 6.19k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 10.9k | const size_t output_stride, float* scratch) { | 40 | 10.9k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 10.9k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 10.9k | float* block = scratch; | 43 | 10.9k | if (ROWS < COLS) { | 44 | 54.6k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 393k | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 349k | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 349k | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 349k | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 349k | } | 50 | 43.7k | } | 51 | 10.9k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 10.9k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 10.9k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 10.9k | scratch_space); | 64 | 10.9k | } |
enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 36.8k | const size_t output_stride, float* scratch) { | 40 | 36.8k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 36.8k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 36.8k | float* block = scratch; | 43 | 36.8k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 36.8k | } else { | 52 | 331k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 2.65M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 2.35M | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 2.35M | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 2.35M | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 2.35M | } | 58 | 294k | } | 59 | 36.8k | } | 60 | | | 61 | 36.8k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 36.8k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 36.8k | scratch_space); | 64 | 36.8k | } |
Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_group.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_ac_strategy.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 328k | const size_t output_stride, float* scratch) { | 40 | 328k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 328k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 328k | float* block = scratch; | 43 | 328k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 328k | } else { | 52 | 656k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 984k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 656k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 656k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 656k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 656k | } | 58 | 328k | } | 59 | 328k | } | 60 | | | 61 | 328k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 328k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 328k | scratch_space); | 64 | 328k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 454k | const size_t output_stride, float* scratch) { | 40 | 454k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 454k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 454k | float* block = scratch; | 43 | 454k | if (ROWS < COLS) { | 44 | 909k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 1.36M | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 909k | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 909k | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 909k | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 909k | } | 50 | 454k | } | 51 | 454k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 454k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 454k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 454k | scratch_space); | 64 | 454k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 193k | const size_t output_stride, float* scratch) { | 40 | 193k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 193k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 193k | float* block = scratch; | 43 | 193k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 193k | } else { | 52 | 579k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 1.15M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 772k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 772k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 772k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 772k | } | 58 | 386k | } | 59 | 193k | } | 60 | | | 61 | 193k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 193k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 193k | scratch_space); | 64 | 193k | } |
Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 89.7k | const size_t output_stride, float* scratch) { | 40 | 89.7k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 89.7k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 89.7k | float* block = scratch; | 43 | 89.7k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 89.7k | } else { | 52 | 269k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 897k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 717k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 717k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 717k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 717k | } | 58 | 179k | } | 59 | 89.7k | } | 60 | | | 61 | 89.7k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 89.7k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 89.7k | scratch_space); | 64 | 89.7k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 143k | const size_t output_stride, float* scratch) { | 40 | 143k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 143k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 143k | float* block = scratch; | 43 | 143k | if (ROWS < COLS) { | 44 | 431k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 1.43M | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 1.14M | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 1.14M | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 1.14M | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 1.14M | } | 50 | 287k | } | 51 | 143k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 143k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 143k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 143k | scratch_space); | 64 | 143k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 198k | const size_t output_stride, float* scratch) { | 40 | 198k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 198k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 198k | float* block = scratch; | 43 | 198k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 198k | } else { | 52 | 993k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 3.97M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 3.18M | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 3.18M | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 3.18M | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 3.18M | } | 58 | 795k | } | 59 | 198k | } | 60 | | | 61 | 198k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 198k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 198k | scratch_space); | 64 | 198k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 6.19k | const size_t output_stride, float* scratch) { | 40 | 6.19k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 6.19k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 6.19k | float* block = scratch; | 43 | 6.19k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 6.19k | } else { | 52 | 30.9k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 223k | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 198k | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 198k | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 198k | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 198k | } | 58 | 24.7k | } | 59 | 6.19k | } | 60 | | | 61 | 6.19k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 6.19k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 6.19k | scratch_space); | 64 | 6.19k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 10.9k | const size_t output_stride, float* scratch) { | 40 | 10.9k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 10.9k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 10.9k | float* block = scratch; | 43 | 10.9k | if (ROWS < COLS) { | 44 | 54.6k | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 393k | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 349k | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 349k | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 349k | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 349k | } | 50 | 43.7k | } | 51 | 10.9k | } else { | 52 | 0 | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 0 | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 0 | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 0 | } | 58 | 0 | } | 59 | 0 | } | 60 | | | 61 | 10.9k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 10.9k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 10.9k | scratch_space); | 64 | 10.9k | } |
enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Line | Count | Source | 39 | 36.8k | const size_t output_stride, float* scratch) { | 40 | 36.8k | static_assert(ROWS <= kMaxBlocks, "Unsupported block size"); | 41 | 36.8k | static_assert(COLS <= kMaxBlocks, "Unsupported block size"); | 42 | 36.8k | float* block = scratch; | 43 | 36.8k | if (ROWS < COLS) { | 44 | 0 | for (size_t y = 0; y < LF_ROWS; y++) { | 45 | 0 | for (size_t x = 0; x < LF_COLS; x++) { | 46 | 0 | block[y * COLS + x] = input[y * input_stride + x] * | 47 | 0 | DCTTotalResampleScale<DCT_ROWS, ROWS>(y) * | 48 | 0 | DCTTotalResampleScale<DCT_COLS, COLS>(x); | 49 | 0 | } | 50 | 0 | } | 51 | 36.8k | } else { | 52 | 331k | for (size_t y = 0; y < LF_COLS; y++) { | 53 | 2.65M | for (size_t x = 0; x < LF_ROWS; x++) { | 54 | 2.35M | block[y * ROWS + x] = input[y * input_stride + x] * | 55 | 2.35M | DCTTotalResampleScale<DCT_COLS, COLS>(y) * | 56 | 2.35M | DCTTotalResampleScale<DCT_ROWS, ROWS>(x); | 57 | 2.35M | } | 58 | 294k | } | 59 | 36.8k | } | 60 | | | 61 | 36.8k | float* scratch_space = scratch + kMaxBlocks * kMaxBlocks; | 62 | 36.8k | ComputeScaledIDCT<ROWS, COLS>()(block, DCTTo(output, output_stride), | 63 | 36.8k | scratch_space); | 64 | 36.8k | } |
Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_ZEN4::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_AVX3_SPR::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 8ul, 2ul, 1ul, 2ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 16ul, 1ul, 2ul, 1ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 16ul, 2ul, 2ul, 2ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 8ul, 4ul, 1ul, 4ul, 1ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<8ul, 32ul, 1ul, 4ul, 1ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 16ul, 4ul, 2ul, 4ul, 2ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<16ul, 32ul, 2ul, 4ul, 2ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 32ul, 4ul, 4ul, 4ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 32ul, 8ul, 4ul, 8ul, 4ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<32ul, 64ul, 4ul, 8ul, 4ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 64ul, 8ul, 8ul, 8ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 64ul, 16ul, 8ul, 16ul, 8ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<64ul, 128ul, 8ul, 16ul, 8ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 128ul, 16ul, 16ul, 16ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 128ul, 32ul, 16ul, 32ul, 16ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<128ul, 256ul, 16ul, 32ul, 16ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:void jxl::N_SSE2::(anonymous namespace)::ReinterpretingIDCT<256ul, 256ul, 32ul, 32ul, 32ul, 32ul>(float const*, unsigned long, float*, unsigned long, float*) |
401 | 74.6M | } Unexecuted instantiation: enc_group.cc:jxl::N_SSE4::(anonymous namespace)::AFVDCT4x4(float const*, float*) enc_group.cc:jxl::N_AVX2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Line | Count | Source | 99 | 1.42M | void AFVDCT4x4(const float* JXL_RESTRICT pixels, float* JXL_RESTRICT coeffs) { | 100 | 1.42M | HWY_ALIGN static constexpr float k4x4AFVBasisTranspose[16][16] = { | 101 | 1.42M | { | 102 | 1.42M | 0.2500000000000000, | 103 | 1.42M | 0.8769029297991420f, | 104 | 1.42M | 0.0000000000000000, | 105 | 1.42M | 0.0000000000000000, | 106 | 1.42M | 0.0000000000000000, | 107 | 1.42M | -0.4105377591765233f, | 108 | 1.42M | 0.0000000000000000, | 109 | 1.42M | 0.0000000000000000, | 110 | 1.42M | 0.0000000000000000, | 111 | 1.42M | 0.0000000000000000, | 112 | 1.42M | 0.0000000000000000, | 113 | 1.42M | 0.0000000000000000, | 114 | 1.42M | 0.0000000000000000, | 115 | 1.42M | 0.0000000000000000, | 116 | 1.42M | 0.0000000000000000, | 117 | 1.42M | 0.0000000000000000, | 118 | 1.42M | }, | 119 | 1.42M | { | 120 | 1.42M | 0.2500000000000000, | 121 | 1.42M | 0.2206518106944235f, | 122 | 1.42M | 0.0000000000000000, | 123 | 1.42M | 0.0000000000000000, | 124 | 1.42M | -0.7071067811865474f, | 125 | 1.42M | 0.6235485373547691f, | 126 | 1.42M | 0.0000000000000000, | 127 | 1.42M | 0.0000000000000000, | 128 | 1.42M | 0.0000000000000000, | 129 | 1.42M | 0.0000000000000000, | 130 | 1.42M | 0.0000000000000000, | 131 | 1.42M | 0.0000000000000000, | 132 | 1.42M | 0.0000000000000000, | 133 | 1.42M | 0.0000000000000000, | 134 | 1.42M | 0.0000000000000000, | 135 | 1.42M | 0.0000000000000000, | 136 | 1.42M | }, | 137 | 1.42M | { | 138 | 1.42M | 0.2500000000000000, | 139 | 1.42M | -0.1014005039375376f, | 140 | 1.42M | 0.4067007583026075f, | 141 | 1.42M | -0.2125574805828875f, | 142 | 1.42M | 0.0000000000000000, | 143 | 1.42M | -0.0643507165794627f, | 144 | 1.42M | -0.4517556589999482f, | 145 | 1.42M | -0.3046847507248690f, | 146 | 1.42M | 0.3017929516615495f, | 147 | 1.42M | 0.4082482904638627f, | 148 | 1.42M | 0.1747866975480809f, | 149 | 1.42M | -0.2110560104933578f, | 150 | 1.42M | -0.1426608480880726f, | 151 | 1.42M | -0.1381354035075859f, | 152 | 1.42M | -0.1743760259965107f, | 153 | 1.42M | 0.1135498731499434f, | 154 | 1.42M | }, | 155 | 1.42M | { | 156 | 1.42M | 0.2500000000000000, | 157 | 1.42M | -0.1014005039375375f, | 158 | 1.42M | 0.4444481661973445f, | 159 | 1.42M | 0.3085497062849767f, | 160 | 1.42M | 0.0000000000000000f, | 161 | 1.42M | -0.0643507165794627f, | 162 | 1.42M | 0.1585450355184006f, | 163 | 1.42M | 0.5112616136591823f, | 164 | 1.42M | 0.2579236279634118f, | 165 | 1.42M | 0.0000000000000000, | 166 | 1.42M | 0.0812611176717539f, | 167 | 1.42M | 0.1856718091610980f, | 168 | 1.42M | -0.3416446842253372f, | 169 | 1.42M | 0.3302282550303788f, | 170 | 1.42M | 0.0702790691196284f, | 171 | 1.42M | -0.0741750459581035f, | 172 | 1.42M | }, | 173 | 1.42M | { | 174 | 1.42M | 0.2500000000000000, | 175 | 1.42M | 0.2206518106944236f, | 176 | 1.42M | 0.0000000000000000, | 177 | 1.42M | 0.0000000000000000, | 178 | 1.42M | 0.7071067811865476f, | 179 | 1.42M | 0.6235485373547694f, | 180 | 1.42M | 0.0000000000000000, | 181 | 1.42M | 0.0000000000000000, | 182 | 1.42M | 0.0000000000000000, | 183 | 1.42M | 0.0000000000000000, | 184 | 1.42M | 0.0000000000000000, | 185 | 1.42M | 0.0000000000000000, | 186 | 1.42M | 0.0000000000000000, | 187 | 1.42M | 0.0000000000000000, | 188 | 1.42M | 0.0000000000000000, | 189 | 1.42M | 0.0000000000000000, | 190 | 1.42M | }, | 191 | 1.42M | { | 192 | 1.42M | 0.2500000000000000, | 193 | 1.42M | -0.1014005039375378f, | 194 | 1.42M | 0.0000000000000000, | 195 | 1.42M | 0.4706702258572536f, | 196 | 1.42M | 0.0000000000000000, | 197 | 1.42M | -0.0643507165794628f, | 198 | 1.42M | -0.0403851516082220f, | 199 | 1.42M | 0.0000000000000000, | 200 | 1.42M | 0.1627234014286620f, | 201 | 1.42M | 0.0000000000000000, | 202 | 1.42M | 0.0000000000000000, | 203 | 1.42M | 0.0000000000000000, | 204 | 1.42M | 0.7367497537172237f, | 205 | 1.42M | 0.0875511500058708f, | 206 | 1.42M | -0.2921026642334881f, | 207 | 1.42M | 0.1940289303259434f, | 208 | 1.42M | }, | 209 | 1.42M | { | 210 | 1.42M | 0.2500000000000000, | 211 | 1.42M | -0.1014005039375377f, | 212 | 1.42M | 0.1957439937204294f, | 213 | 1.42M | -0.1621205195722993f, | 214 | 1.42M | 0.0000000000000000, | 215 | 1.42M | -0.0643507165794628f, | 216 | 1.42M | 0.0074182263792424f, | 217 | 1.42M | -0.2904801297289980f, | 218 | 1.42M | 0.0952002265347504f, | 219 | 1.42M | 0.0000000000000000, | 220 | 1.42M | -0.3675398009862027f, | 221 | 1.42M | 0.4921585901373873f, | 222 | 1.42M | 0.2462710772207515f, | 223 | 1.42M | -0.0794670660590957f, | 224 | 1.42M | 0.3623817333531167f, | 225 | 1.42M | -0.4351904965232280f, | 226 | 1.42M | }, | 227 | 1.42M | { | 228 | 1.42M | 0.2500000000000000, | 229 | 1.42M | -0.1014005039375376f, | 230 | 1.42M | 0.2929100136981264f, | 231 | 1.42M | 0.0000000000000000, | 232 | 1.42M | 0.0000000000000000, | 233 | 1.42M | -0.0643507165794627f, | 234 | 1.42M | 0.3935103426921017f, | 235 | 1.42M | -0.0657870154914280f, | 236 | 1.42M | 0.0000000000000000, | 237 | 1.42M | -0.4082482904638628f, | 238 | 1.42M | -0.3078822139579090f, | 239 | 1.42M | -0.3852501370925192f, | 240 | 1.42M | -0.0857401903551931f, | 241 | 1.42M | -0.4613374887461511f, | 242 | 1.42M | 0.0000000000000000, | 243 | 1.42M | 0.2191868483885747f, | 244 | 1.42M | }, | 245 | 1.42M | { | 246 | 1.42M | 0.2500000000000000, | 247 | 1.42M | -0.1014005039375376f, | 248 | 1.42M | -0.4067007583026072f, | 249 | 1.42M | -0.2125574805828705f, | 250 | 1.42M | 0.0000000000000000, | 251 | 1.42M | -0.0643507165794627f, | 252 | 1.42M | -0.4517556589999464f, | 253 | 1.42M | 0.3046847507248840f, | 254 | 1.42M | 0.3017929516615503f, | 255 | 1.42M | -0.4082482904638635f, | 256 | 1.42M | -0.1747866975480813f, | 257 | 1.42M | 0.2110560104933581f, | 258 | 1.42M | -0.1426608480880734f, | 259 | 1.42M | -0.1381354035075829f, | 260 | 1.42M | -0.1743760259965108f, | 261 | 1.42M | 0.1135498731499426f, | 262 | 1.42M | }, | 263 | 1.42M | { | 264 | 1.42M | 0.2500000000000000, | 265 | 1.42M | -0.1014005039375377f, | 266 | 1.42M | -0.1957439937204287f, | 267 | 1.42M | -0.1621205195722833f, | 268 | 1.42M | 0.0000000000000000, | 269 | 1.42M | -0.0643507165794628f, | 270 | 1.42M | 0.0074182263792444f, | 271 | 1.42M | 0.2904801297290076f, | 272 | 1.42M | 0.0952002265347505f, | 273 | 1.42M | 0.0000000000000000, | 274 | 1.42M | 0.3675398009862011f, | 275 | 1.42M | -0.4921585901373891f, | 276 | 1.42M | 0.2462710772207514f, | 277 | 1.42M | -0.0794670660591026f, | 278 | 1.42M | 0.3623817333531165f, | 279 | 1.42M | -0.4351904965232251f, | 280 | 1.42M | }, | 281 | 1.42M | { | 282 | 1.42M | 0.2500000000000000, | 283 | 1.42M | -0.1014005039375375f, | 284 | 1.42M | 0.0000000000000000, | 285 | 1.42M | -0.4706702258572528f, | 286 | 1.42M | 0.0000000000000000, | 287 | 1.42M | -0.0643507165794627f, | 288 | 1.42M | 0.1107416575309343f, | 289 | 1.42M | 0.0000000000000000, | 290 | 1.42M | -0.1627234014286617f, | 291 | 1.42M | 0.0000000000000000, | 292 | 1.42M | 0.0000000000000000, | 293 | 1.42M | 0.0000000000000000, | 294 | 1.42M | 0.1488339922711357f, | 295 | 1.42M | 0.4972464710953509f, | 296 | 1.42M | 0.2921026642334879f, | 297 | 1.42M | 0.5550443808910661f, | 298 | 1.42M | }, | 299 | 1.42M | { | 300 | 1.42M | 0.2500000000000000, | 301 | 1.42M | -0.1014005039375377f, | 302 | 1.42M | 0.1137907446044809f, | 303 | 1.42M | -0.1464291867126764f, | 304 | 1.42M | 0.0000000000000000, | 305 | 1.42M | -0.0643507165794628f, | 306 | 1.42M | 0.0829816309488205f, | 307 | 1.42M | -0.2388977352334460f, | 308 | 1.42M | -0.3531238544981630f, | 309 | 1.42M | -0.4082482904638630f, | 310 | 1.42M | 0.4826689115059883f, | 311 | 1.42M | 0.1741941265991622f, | 312 | 1.42M | -0.0476868035022925f, | 313 | 1.42M | 0.1253805944856366f, | 314 | 1.42M | -0.4326608024727445f, | 315 | 1.42M | -0.2546827712406646f, | 316 | 1.42M | }, | 317 | 1.42M | { | 318 | 1.42M | 0.2500000000000000, | 319 | 1.42M | -0.1014005039375377f, | 320 | 1.42M | -0.4444481661973438f, | 321 | 1.42M | 0.3085497062849487f, | 322 | 1.42M | 0.0000000000000000, | 323 | 1.42M | -0.0643507165794628f, | 324 | 1.42M | 0.1585450355183970f, | 325 | 1.42M | -0.5112616136592012f, | 326 | 1.42M | 0.2579236279634129f, | 327 | 1.42M | 0.0000000000000000, | 328 | 1.42M | -0.0812611176717504f, | 329 | 1.42M | -0.1856718091610990f, | 330 | 1.42M | -0.3416446842253373f, | 331 | 1.42M | 0.3302282550303805f, | 332 | 1.42M | 0.0702790691196282f, | 333 | 1.42M | -0.0741750459581023f, | 334 | 1.42M | }, | 335 | 1.42M | { | 336 | 1.42M | 0.2500000000000000, | 337 | 1.42M | -0.1014005039375376f, | 338 | 1.42M | -0.2929100136981264f, | 339 | 1.42M | 0.0000000000000000, | 340 | 1.42M | 0.0000000000000000, | 341 | 1.42M | -0.0643507165794627f, | 342 | 1.42M | 0.3935103426921022f, | 343 | 1.42M | 0.0657870154914254f, | 344 | 1.42M | 0.0000000000000000, | 345 | 1.42M | 0.4082482904638634f, | 346 | 1.42M | 0.3078822139579031f, | 347 | 1.42M | 0.3852501370925211f, | 348 | 1.42M | -0.0857401903551927f, | 349 | 1.42M | -0.4613374887461554f, | 350 | 1.42M | 0.0000000000000000, | 351 | 1.42M | 0.2191868483885728f, | 352 | 1.42M | }, | 353 | 1.42M | { | 354 | 1.42M | 0.2500000000000000, | 355 | 1.42M | -0.1014005039375376f, | 356 | 1.42M | -0.1137907446044814f, | 357 | 1.42M | -0.1464291867126654f, | 358 | 1.42M | 0.0000000000000000, | 359 | 1.42M | -0.0643507165794627f, | 360 | 1.42M | 0.0829816309488214f, | 361 | 1.42M | 0.2388977352334547f, | 362 | 1.42M | -0.3531238544981624f, | 363 | 1.42M | 0.4082482904638630f, | 364 | 1.42M | -0.4826689115059858f, | 365 | 1.42M | -0.1741941265991621f, | 366 | 1.42M | -0.0476868035022928f, | 367 | 1.42M | 0.1253805944856431f, | 368 | 1.42M | -0.4326608024727457f, | 369 | 1.42M | -0.2546827712406641f, | 370 | 1.42M | }, | 371 | 1.42M | { | 372 | 1.42M | 0.2500000000000000, | 373 | 1.42M | -0.1014005039375374f, | 374 | 1.42M | 0.0000000000000000, | 375 | 1.42M | 0.4251149611657548f, | 376 | 1.42M | 0.0000000000000000, | 377 | 1.42M | -0.0643507165794626f, | 378 | 1.42M | -0.4517556589999480f, | 379 | 1.42M | 0.0000000000000000, | 380 | 1.42M | -0.6035859033230976f, | 381 | 1.42M | 0.0000000000000000, | 382 | 1.42M | 0.0000000000000000, | 383 | 1.42M | 0.0000000000000000, | 384 | 1.42M | -0.1426608480880724f, | 385 | 1.42M | -0.1381354035075845f, | 386 | 1.42M | 0.3487520519930227f, | 387 | 1.42M | 0.1135498731499429f, | 388 | 1.42M | }, | 389 | 1.42M | }; | 390 | | | 391 | 1.42M | const HWY_CAPPED(float, 16) d; | 392 | 4.26M | for (size_t i = 0; i < 16; i += Lanes(d)) { | 393 | 2.84M | auto scalar = Zero(d); | 394 | 48.3M | for (size_t j = 0; j < 16; j++) { | 395 | 45.5M | auto px = Set(d, pixels[j]); | 396 | 45.5M | auto basis = Load(d, k4x4AFVBasisTranspose[j] + i); | 397 | 45.5M | scalar = MulAdd(px, basis, scalar); | 398 | 45.5M | } | 399 | 2.84M | Store(scalar, d, coeffs + i); | 400 | 2.84M | } | 401 | 1.42M | } |
Unexecuted instantiation: enc_group.cc:jxl::N_AVX3::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_group.cc:jxl::N_AVX3_ZEN4::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_group.cc:jxl::N_AVX3_SPR::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_group.cc:jxl::N_SSE2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_ac_strategy.cc:jxl::N_SSE4::(anonymous namespace)::AFVDCT4x4(float const*, float*) enc_ac_strategy.cc:jxl::N_AVX2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Line | Count | Source | 99 | 71.8M | void AFVDCT4x4(const float* JXL_RESTRICT pixels, float* JXL_RESTRICT coeffs) { | 100 | 71.8M | HWY_ALIGN static constexpr float k4x4AFVBasisTranspose[16][16] = { | 101 | 71.8M | { | 102 | 71.8M | 0.2500000000000000, | 103 | 71.8M | 0.8769029297991420f, | 104 | 71.8M | 0.0000000000000000, | 105 | 71.8M | 0.0000000000000000, | 106 | 71.8M | 0.0000000000000000, | 107 | 71.8M | -0.4105377591765233f, | 108 | 71.8M | 0.0000000000000000, | 109 | 71.8M | 0.0000000000000000, | 110 | 71.8M | 0.0000000000000000, | 111 | 71.8M | 0.0000000000000000, | 112 | 71.8M | 0.0000000000000000, | 113 | 71.8M | 0.0000000000000000, | 114 | 71.8M | 0.0000000000000000, | 115 | 71.8M | 0.0000000000000000, | 116 | 71.8M | 0.0000000000000000, | 117 | 71.8M | 0.0000000000000000, | 118 | 71.8M | }, | 119 | 71.8M | { | 120 | 71.8M | 0.2500000000000000, | 121 | 71.8M | 0.2206518106944235f, | 122 | 71.8M | 0.0000000000000000, | 123 | 71.8M | 0.0000000000000000, | 124 | 71.8M | -0.7071067811865474f, | 125 | 71.8M | 0.6235485373547691f, | 126 | 71.8M | 0.0000000000000000, | 127 | 71.8M | 0.0000000000000000, | 128 | 71.8M | 0.0000000000000000, | 129 | 71.8M | 0.0000000000000000, | 130 | 71.8M | 0.0000000000000000, | 131 | 71.8M | 0.0000000000000000, | 132 | 71.8M | 0.0000000000000000, | 133 | 71.8M | 0.0000000000000000, | 134 | 71.8M | 0.0000000000000000, | 135 | 71.8M | 0.0000000000000000, | 136 | 71.8M | }, | 137 | 71.8M | { | 138 | 71.8M | 0.2500000000000000, | 139 | 71.8M | -0.1014005039375376f, | 140 | 71.8M | 0.4067007583026075f, | 141 | 71.8M | -0.2125574805828875f, | 142 | 71.8M | 0.0000000000000000, | 143 | 71.8M | -0.0643507165794627f, | 144 | 71.8M | -0.4517556589999482f, | 145 | 71.8M | -0.3046847507248690f, | 146 | 71.8M | 0.3017929516615495f, | 147 | 71.8M | 0.4082482904638627f, | 148 | 71.8M | 0.1747866975480809f, | 149 | 71.8M | -0.2110560104933578f, | 150 | 71.8M | -0.1426608480880726f, | 151 | 71.8M | -0.1381354035075859f, | 152 | 71.8M | -0.1743760259965107f, | 153 | 71.8M | 0.1135498731499434f, | 154 | 71.8M | }, | 155 | 71.8M | { | 156 | 71.8M | 0.2500000000000000, | 157 | 71.8M | -0.1014005039375375f, | 158 | 71.8M | 0.4444481661973445f, | 159 | 71.8M | 0.3085497062849767f, | 160 | 71.8M | 0.0000000000000000f, | 161 | 71.8M | -0.0643507165794627f, | 162 | 71.8M | 0.1585450355184006f, | 163 | 71.8M | 0.5112616136591823f, | 164 | 71.8M | 0.2579236279634118f, | 165 | 71.8M | 0.0000000000000000, | 166 | 71.8M | 0.0812611176717539f, | 167 | 71.8M | 0.1856718091610980f, | 168 | 71.8M | -0.3416446842253372f, | 169 | 71.8M | 0.3302282550303788f, | 170 | 71.8M | 0.0702790691196284f, | 171 | 71.8M | -0.0741750459581035f, | 172 | 71.8M | }, | 173 | 71.8M | { | 174 | 71.8M | 0.2500000000000000, | 175 | 71.8M | 0.2206518106944236f, | 176 | 71.8M | 0.0000000000000000, | 177 | 71.8M | 0.0000000000000000, | 178 | 71.8M | 0.7071067811865476f, | 179 | 71.8M | 0.6235485373547694f, | 180 | 71.8M | 0.0000000000000000, | 181 | 71.8M | 0.0000000000000000, | 182 | 71.8M | 0.0000000000000000, | 183 | 71.8M | 0.0000000000000000, | 184 | 71.8M | 0.0000000000000000, | 185 | 71.8M | 0.0000000000000000, | 186 | 71.8M | 0.0000000000000000, | 187 | 71.8M | 0.0000000000000000, | 188 | 71.8M | 0.0000000000000000, | 189 | 71.8M | 0.0000000000000000, | 190 | 71.8M | }, | 191 | 71.8M | { | 192 | 71.8M | 0.2500000000000000, | 193 | 71.8M | -0.1014005039375378f, | 194 | 71.8M | 0.0000000000000000, | 195 | 71.8M | 0.4706702258572536f, | 196 | 71.8M | 0.0000000000000000, | 197 | 71.8M | -0.0643507165794628f, | 198 | 71.8M | -0.0403851516082220f, | 199 | 71.8M | 0.0000000000000000, | 200 | 71.8M | 0.1627234014286620f, | 201 | 71.8M | 0.0000000000000000, | 202 | 71.8M | 0.0000000000000000, | 203 | 71.8M | 0.0000000000000000, | 204 | 71.8M | 0.7367497537172237f, | 205 | 71.8M | 0.0875511500058708f, | 206 | 71.8M | -0.2921026642334881f, | 207 | 71.8M | 0.1940289303259434f, | 208 | 71.8M | }, | 209 | 71.8M | { | 210 | 71.8M | 0.2500000000000000, | 211 | 71.8M | -0.1014005039375377f, | 212 | 71.8M | 0.1957439937204294f, | 213 | 71.8M | -0.1621205195722993f, | 214 | 71.8M | 0.0000000000000000, | 215 | 71.8M | -0.0643507165794628f, | 216 | 71.8M | 0.0074182263792424f, | 217 | 71.8M | -0.2904801297289980f, | 218 | 71.8M | 0.0952002265347504f, | 219 | 71.8M | 0.0000000000000000, | 220 | 71.8M | -0.3675398009862027f, | 221 | 71.8M | 0.4921585901373873f, | 222 | 71.8M | 0.2462710772207515f, | 223 | 71.8M | -0.0794670660590957f, | 224 | 71.8M | 0.3623817333531167f, | 225 | 71.8M | -0.4351904965232280f, | 226 | 71.8M | }, | 227 | 71.8M | { | 228 | 71.8M | 0.2500000000000000, | 229 | 71.8M | -0.1014005039375376f, | 230 | 71.8M | 0.2929100136981264f, | 231 | 71.8M | 0.0000000000000000, | 232 | 71.8M | 0.0000000000000000, | 233 | 71.8M | -0.0643507165794627f, | 234 | 71.8M | 0.3935103426921017f, | 235 | 71.8M | -0.0657870154914280f, | 236 | 71.8M | 0.0000000000000000, | 237 | 71.8M | -0.4082482904638628f, | 238 | 71.8M | -0.3078822139579090f, | 239 | 71.8M | -0.3852501370925192f, | 240 | 71.8M | -0.0857401903551931f, | 241 | 71.8M | -0.4613374887461511f, | 242 | 71.8M | 0.0000000000000000, | 243 | 71.8M | 0.2191868483885747f, | 244 | 71.8M | }, | 245 | 71.8M | { | 246 | 71.8M | 0.2500000000000000, | 247 | 71.8M | -0.1014005039375376f, | 248 | 71.8M | -0.4067007583026072f, | 249 | 71.8M | -0.2125574805828705f, | 250 | 71.8M | 0.0000000000000000, | 251 | 71.8M | -0.0643507165794627f, | 252 | 71.8M | -0.4517556589999464f, | 253 | 71.8M | 0.3046847507248840f, | 254 | 71.8M | 0.3017929516615503f, | 255 | 71.8M | -0.4082482904638635f, | 256 | 71.8M | -0.1747866975480813f, | 257 | 71.8M | 0.2110560104933581f, | 258 | 71.8M | -0.1426608480880734f, | 259 | 71.8M | -0.1381354035075829f, | 260 | 71.8M | -0.1743760259965108f, | 261 | 71.8M | 0.1135498731499426f, | 262 | 71.8M | }, | 263 | 71.8M | { | 264 | 71.8M | 0.2500000000000000, | 265 | 71.8M | -0.1014005039375377f, | 266 | 71.8M | -0.1957439937204287f, | 267 | 71.8M | -0.1621205195722833f, | 268 | 71.8M | 0.0000000000000000, | 269 | 71.8M | -0.0643507165794628f, | 270 | 71.8M | 0.0074182263792444f, | 271 | 71.8M | 0.2904801297290076f, | 272 | 71.8M | 0.0952002265347505f, | 273 | 71.8M | 0.0000000000000000, | 274 | 71.8M | 0.3675398009862011f, | 275 | 71.8M | -0.4921585901373891f, | 276 | 71.8M | 0.2462710772207514f, | 277 | 71.8M | -0.0794670660591026f, | 278 | 71.8M | 0.3623817333531165f, | 279 | 71.8M | -0.4351904965232251f, | 280 | 71.8M | }, | 281 | 71.8M | { | 282 | 71.8M | 0.2500000000000000, | 283 | 71.8M | -0.1014005039375375f, | 284 | 71.8M | 0.0000000000000000, | 285 | 71.8M | -0.4706702258572528f, | 286 | 71.8M | 0.0000000000000000, | 287 | 71.8M | -0.0643507165794627f, | 288 | 71.8M | 0.1107416575309343f, | 289 | 71.8M | 0.0000000000000000, | 290 | 71.8M | -0.1627234014286617f, | 291 | 71.8M | 0.0000000000000000, | 292 | 71.8M | 0.0000000000000000, | 293 | 71.8M | 0.0000000000000000, | 294 | 71.8M | 0.1488339922711357f, | 295 | 71.8M | 0.4972464710953509f, | 296 | 71.8M | 0.2921026642334879f, | 297 | 71.8M | 0.5550443808910661f, | 298 | 71.8M | }, | 299 | 71.8M | { | 300 | 71.8M | 0.2500000000000000, | 301 | 71.8M | -0.1014005039375377f, | 302 | 71.8M | 0.1137907446044809f, | 303 | 71.8M | -0.1464291867126764f, | 304 | 71.8M | 0.0000000000000000, | 305 | 71.8M | -0.0643507165794628f, | 306 | 71.8M | 0.0829816309488205f, | 307 | 71.8M | -0.2388977352334460f, | 308 | 71.8M | -0.3531238544981630f, | 309 | 71.8M | -0.4082482904638630f, | 310 | 71.8M | 0.4826689115059883f, | 311 | 71.8M | 0.1741941265991622f, | 312 | 71.8M | -0.0476868035022925f, | 313 | 71.8M | 0.1253805944856366f, | 314 | 71.8M | -0.4326608024727445f, | 315 | 71.8M | -0.2546827712406646f, | 316 | 71.8M | }, | 317 | 71.8M | { | 318 | 71.8M | 0.2500000000000000, | 319 | 71.8M | -0.1014005039375377f, | 320 | 71.8M | -0.4444481661973438f, | 321 | 71.8M | 0.3085497062849487f, | 322 | 71.8M | 0.0000000000000000, | 323 | 71.8M | -0.0643507165794628f, | 324 | 71.8M | 0.1585450355183970f, | 325 | 71.8M | -0.5112616136592012f, | 326 | 71.8M | 0.2579236279634129f, | 327 | 71.8M | 0.0000000000000000, | 328 | 71.8M | -0.0812611176717504f, | 329 | 71.8M | -0.1856718091610990f, | 330 | 71.8M | -0.3416446842253373f, | 331 | 71.8M | 0.3302282550303805f, | 332 | 71.8M | 0.0702790691196282f, | 333 | 71.8M | -0.0741750459581023f, | 334 | 71.8M | }, | 335 | 71.8M | { | 336 | 71.8M | 0.2500000000000000, | 337 | 71.8M | -0.1014005039375376f, | 338 | 71.8M | -0.2929100136981264f, | 339 | 71.8M | 0.0000000000000000, | 340 | 71.8M | 0.0000000000000000, | 341 | 71.8M | -0.0643507165794627f, | 342 | 71.8M | 0.3935103426921022f, | 343 | 71.8M | 0.0657870154914254f, | 344 | 71.8M | 0.0000000000000000, | 345 | 71.8M | 0.4082482904638634f, | 346 | 71.8M | 0.3078822139579031f, | 347 | 71.8M | 0.3852501370925211f, | 348 | 71.8M | -0.0857401903551927f, | 349 | 71.8M | -0.4613374887461554f, | 350 | 71.8M | 0.0000000000000000, | 351 | 71.8M | 0.2191868483885728f, | 352 | 71.8M | }, | 353 | 71.8M | { | 354 | 71.8M | 0.2500000000000000, | 355 | 71.8M | -0.1014005039375376f, | 356 | 71.8M | -0.1137907446044814f, | 357 | 71.8M | -0.1464291867126654f, | 358 | 71.8M | 0.0000000000000000, | 359 | 71.8M | -0.0643507165794627f, | 360 | 71.8M | 0.0829816309488214f, | 361 | 71.8M | 0.2388977352334547f, | 362 | 71.8M | -0.3531238544981624f, | 363 | 71.8M | 0.4082482904638630f, | 364 | 71.8M | -0.4826689115059858f, | 365 | 71.8M | -0.1741941265991621f, | 366 | 71.8M | -0.0476868035022928f, | 367 | 71.8M | 0.1253805944856431f, | 368 | 71.8M | -0.4326608024727457f, | 369 | 71.8M | -0.2546827712406641f, | 370 | 71.8M | }, | 371 | 71.8M | { | 372 | 71.8M | 0.2500000000000000, | 373 | 71.8M | -0.1014005039375374f, | 374 | 71.8M | 0.0000000000000000, | 375 | 71.8M | 0.4251149611657548f, | 376 | 71.8M | 0.0000000000000000, | 377 | 71.8M | -0.0643507165794626f, | 378 | 71.8M | -0.4517556589999480f, | 379 | 71.8M | 0.0000000000000000, | 380 | 71.8M | -0.6035859033230976f, | 381 | 71.8M | 0.0000000000000000, | 382 | 71.8M | 0.0000000000000000, | 383 | 71.8M | 0.0000000000000000, | 384 | 71.8M | -0.1426608480880724f, | 385 | 71.8M | -0.1381354035075845f, | 386 | 71.8M | 0.3487520519930227f, | 387 | 71.8M | 0.1135498731499429f, | 388 | 71.8M | }, | 389 | 71.8M | }; | 390 | | | 391 | 71.8M | const HWY_CAPPED(float, 16) d; | 392 | 215M | for (size_t i = 0; i < 16; i += Lanes(d)) { | 393 | 143M | auto scalar = Zero(d); | 394 | 2.44G | for (size_t j = 0; j < 16; j++) { | 395 | 2.29G | auto px = Set(d, pixels[j]); | 396 | 2.29G | auto basis = Load(d, k4x4AFVBasisTranspose[j] + i); | 397 | 2.29G | scalar = MulAdd(px, basis, scalar); | 398 | 2.29G | } | 399 | 143M | Store(scalar, d, coeffs + i); | 400 | 143M | } | 401 | 71.8M | } |
Unexecuted instantiation: enc_ac_strategy.cc:jxl::N_AVX3::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_ac_strategy.cc:jxl::N_AVX3_ZEN4::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_ac_strategy.cc:jxl::N_AVX3_SPR::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_ac_strategy.cc:jxl::N_SSE2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_SSE4::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_AVX2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_AVX3::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_AVX3_ZEN4::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_AVX3_SPR::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::N_SSE2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:jxl::N_SSE4::(anonymous namespace)::AFVDCT4x4(float const*, float*) enc_chroma_from_luma.cc:jxl::N_AVX2::(anonymous namespace)::AFVDCT4x4(float const*, float*) Line | Count | Source | 99 | 1.42M | void AFVDCT4x4(const float* JXL_RESTRICT pixels, float* JXL_RESTRICT coeffs) { | 100 | 1.42M | HWY_ALIGN static constexpr float k4x4AFVBasisTranspose[16][16] = { | 101 | 1.42M | { | 102 | 1.42M | 0.2500000000000000, | 103 | 1.42M | 0.8769029297991420f, | 104 | 1.42M | 0.0000000000000000, | 105 | 1.42M | 0.0000000000000000, | 106 | 1.42M | 0.0000000000000000, | 107 | 1.42M | -0.4105377591765233f, | 108 | 1.42M | 0.0000000000000000, | 109 | 1.42M | 0.0000000000000000, | 110 | 1.42M | 0.0000000000000000, | 111 | 1.42M | 0.0000000000000000, | 112 | 1.42M | 0.0000000000000000, | 113 | 1.42M | 0.0000000000000000, | 114 | 1.42M | 0.0000000000000000, | 115 | 1.42M | 0.0000000000000000, | 116 | 1.42M | 0.0000000000000000, | 117 | 1.42M | 0.0000000000000000, | 118 | 1.42M | }, | 119 | 1.42M | { | 120 | 1.42M | 0.2500000000000000, | 121 | 1.42M | 0.2206518106944235f, | 122 | 1.42M | 0.0000000000000000, | 123 | 1.42M | 0.0000000000000000, | 124 | 1.42M | -0.7071067811865474f, | 125 | 1.42M | 0.6235485373547691f, | 126 | 1.42M | 0.0000000000000000, | 127 | 1.42M | 0.0000000000000000, | 128 | 1.42M | 0.0000000000000000, | 129 | 1.42M | 0.0000000000000000, | 130 | 1.42M | 0.0000000000000000, | 131 | 1.42M | 0.0000000000000000, | 132 | 1.42M | 0.0000000000000000, | 133 | 1.42M | 0.0000000000000000, | 134 | 1.42M | 0.0000000000000000, | 135 | 1.42M | 0.0000000000000000, | 136 | 1.42M | }, | 137 | 1.42M | { | 138 | 1.42M | 0.2500000000000000, | 139 | 1.42M | -0.1014005039375376f, | 140 | 1.42M | 0.4067007583026075f, | 141 | 1.42M | -0.2125574805828875f, | 142 | 1.42M | 0.0000000000000000, | 143 | 1.42M | -0.0643507165794627f, | 144 | 1.42M | -0.4517556589999482f, | 145 | 1.42M | -0.3046847507248690f, | 146 | 1.42M | 0.3017929516615495f, | 147 | 1.42M | 0.4082482904638627f, | 148 | 1.42M | 0.1747866975480809f, | 149 | 1.42M | -0.2110560104933578f, | 150 | 1.42M | -0.1426608480880726f, | 151 | 1.42M | -0.1381354035075859f, | 152 | 1.42M | -0.1743760259965107f, | 153 | 1.42M | 0.1135498731499434f, | 154 | 1.42M | }, | 155 | 1.42M | { | 156 | 1.42M | 0.2500000000000000, | 157 | 1.42M | -0.1014005039375375f, | 158 | 1.42M | 0.4444481661973445f, | 159 | 1.42M | 0.3085497062849767f, | 160 | 1.42M | 0.0000000000000000f, | 161 | 1.42M | -0.0643507165794627f, | 162 | 1.42M | 0.1585450355184006f, | 163 | 1.42M | 0.5112616136591823f, | 164 | 1.42M | 0.2579236279634118f, | 165 | 1.42M | 0.0000000000000000, | 166 | 1.42M | 0.0812611176717539f, | 167 | 1.42M | 0.1856718091610980f, | 168 | 1.42M | -0.3416446842253372f, | 169 | 1.42M | 0.3302282550303788f, | 170 | 1.42M | 0.0702790691196284f, | 171 | 1.42M | -0.0741750459581035f, | 172 | 1.42M | }, | 173 | 1.42M | { | 174 | 1.42M | 0.2500000000000000, | 175 | 1.42M | 0.2206518106944236f, | 176 | 1.42M | 0.0000000000000000, | 177 | 1.42M | 0.0000000000000000, | 178 | 1.42M | 0.7071067811865476f, | 179 | 1.42M | 0.6235485373547694f, | 180 | 1.42M | 0.0000000000000000, | 181 | 1.42M | 0.0000000000000000, | 182 | 1.42M | 0.0000000000000000, | 183 | 1.42M | 0.0000000000000000, | 184 | 1.42M | 0.0000000000000000, | 185 | 1.42M | 0.0000000000000000, | 186 | 1.42M | 0.0000000000000000, | 187 | 1.42M | 0.0000000000000000, | 188 | 1.42M | 0.0000000000000000, | 189 | 1.42M | 0.0000000000000000, | 190 | 1.42M | }, | 191 | 1.42M | { | 192 | 1.42M | 0.2500000000000000, | 193 | 1.42M | -0.1014005039375378f, | 194 | 1.42M | 0.0000000000000000, | 195 | 1.42M | 0.4706702258572536f, | 196 | 1.42M | 0.0000000000000000, | 197 | 1.42M | -0.0643507165794628f, | 198 | 1.42M | -0.0403851516082220f, | 199 | 1.42M | 0.0000000000000000, | 200 | 1.42M | 0.1627234014286620f, | 201 | 1.42M | 0.0000000000000000, | 202 | 1.42M | 0.0000000000000000, | 203 | 1.42M | 0.0000000000000000, | 204 | 1.42M | 0.7367497537172237f, | 205 | 1.42M | 0.0875511500058708f, | 206 | 1.42M | -0.2921026642334881f, | 207 | 1.42M | 0.1940289303259434f, | 208 | 1.42M | }, | 209 | 1.42M | { | 210 | 1.42M | 0.2500000000000000, | 211 | 1.42M | -0.1014005039375377f, | 212 | 1.42M | 0.1957439937204294f, | 213 | 1.42M | -0.1621205195722993f, | 214 | 1.42M | 0.0000000000000000, | 215 | 1.42M | -0.0643507165794628f, | 216 | 1.42M | 0.0074182263792424f, | 217 | 1.42M | -0.2904801297289980f, | 218 | 1.42M | 0.0952002265347504f, | 219 | 1.42M | 0.0000000000000000, | 220 | 1.42M | -0.3675398009862027f, | 221 | 1.42M | 0.4921585901373873f, | 222 | 1.42M | 0.2462710772207515f, | 223 | 1.42M | -0.0794670660590957f, | 224 | 1.42M | 0.3623817333531167f, | 225 | 1.42M | -0.4351904965232280f, | 226 | 1.42M | }, | 227 | 1.42M | { | 228 | 1.42M | 0.2500000000000000, | 229 | 1.42M | -0.1014005039375376f, | 230 | 1.42M | 0.2929100136981264f, | 231 | 1.42M | 0.0000000000000000, | 232 | 1.42M | 0.0000000000000000, | 233 | 1.42M | -0.0643507165794627f, | 234 | 1.42M | 0.3935103426921017f, | 235 | 1.42M | -0.0657870154914280f, | 236 | 1.42M | 0.0000000000000000, | 237 | 1.42M | -0.4082482904638628f, | 238 | 1.42M | -0.3078822139579090f, | 239 | 1.42M | -0.3852501370925192f, | 240 | 1.42M | -0.0857401903551931f, | 241 | 1.42M | -0.4613374887461511f, | 242 | 1.42M | 0.0000000000000000, | 243 | 1.42M | 0.2191868483885747f, | 244 | 1.42M | }, | 245 | 1.42M | { | 246 | 1.42M | 0.2500000000000000, | 247 | 1.42M | -0.1014005039375376f, | 248 | 1.42M | -0.4067007583026072f, | 249 | 1.42M | -0.2125574805828705f, | 250 | 1.42M | 0.0000000000000000, | 251 | 1.42M | -0.0643507165794627f, | 252 | 1.42M | -0.4517556589999464f, | 253 | 1.42M | 0.3046847507248840f, | 254 | 1.42M | 0.3017929516615503f, | 255 | 1.42M | -0.4082482904638635f, | 256 | 1.42M | -0.1747866975480813f, | 257 | 1.42M | 0.2110560104933581f, | 258 | 1.42M | -0.1426608480880734f, | 259 | 1.42M | -0.1381354035075829f, | 260 | 1.42M | -0.1743760259965108f, | 261 | 1.42M | 0.1135498731499426f, | 262 | 1.42M | }, | 263 | 1.42M | { | 264 | 1.42M | 0.2500000000000000, | 265 | 1.42M | -0.1014005039375377f, | 266 | 1.42M | -0.1957439937204287f, | 267 | 1.42M | -0.1621205195722833f, | 268 | 1.42M | 0.0000000000000000, | 269 | 1.42M | -0.0643507165794628f, | 270 | 1.42M | 0.0074182263792444f, | 271 | 1.42M | 0.2904801297290076f, | 272 | 1.42M | 0.0952002265347505f, | 273 | 1.42M | 0.0000000000000000, | 274 | 1.42M | 0.3675398009862011f, | 275 | 1.42M | -0.4921585901373891f, | 276 | 1.42M | 0.2462710772207514f, | 277 | 1.42M | -0.0794670660591026f, | 278 | 1.42M | 0.3623817333531165f, | 279 | 1.42M | -0.4351904965232251f, | 280 | 1.42M | }, | 281 | 1.42M | { | 282 | 1.42M | 0.2500000000000000, | 283 | 1.42M | -0.1014005039375375f, | 284 | 1.42M | 0.0000000000000000, | 285 | 1.42M | -0.4706702258572528f, | 286 | 1.42M | 0.0000000000000000, | 287 | 1.42M | -0.0643507165794627f, | 288 | 1.42M | 0.1107416575309343f, | 289 | 1.42M | 0.0000000000000000, | 290 | 1.42M | -0.1627234014286617f, | 291 | 1.42M | 0.0000000000000000, | 292 | 1.42M | 0.0000000000000000, | 293 | 1.42M | 0.0000000000000000, | 294 | 1.42M | 0.1488339922711357f, | 295 | 1.42M | 0.4972464710953509f, | 296 | 1.42M | 0.2921026642334879f, | 297 | 1.42M | 0.5550443808910661f, | 298 | 1.42M | }, | 299 | 1.42M | { | 300 | 1.42M | 0.2500000000000000, | 301 | 1.42M | -0.1014005039375377f, | 302 | 1.42M | 0.1137907446044809f, | 303 | 1.42M | -0.1464291867126764f, | 304 | 1.42M | 0.0000000000000000, | 305 | 1.42M | -0.0643507165794628f, | 306 | 1.42M | 0.0829816309488205f, | 307 | 1.42M | -0.2388977352334460f, | 308 | 1.42M | -0.3531238544981630f, | 309 | 1.42M | -0.4082482904638630f, | 310 | 1.42M | 0.4826689115059883f, | 311 | 1.42M | 0.1741941265991622f, | 312 | 1.42M | -0.0476868035022925f, | 313 | 1.42M | 0.1253805944856366f, | 314 | 1.42M | -0.4326608024727445f, | 315 | 1.42M | -0.2546827712406646f, | 316 | 1.42M | }, | 317 | 1.42M | { | 318 | 1.42M | 0.2500000000000000, | 319 | 1.42M | -0.1014005039375377f, | 320 | 1.42M | -0.4444481661973438f, | 321 | 1.42M | 0.3085497062849487f, | 322 | 1.42M | 0.0000000000000000, | 323 | 1.42M | -0.0643507165794628f, | 324 | 1.42M | 0.1585450355183970f, | 325 | 1.42M | -0.5112616136592012f, | 326 | 1.42M | 0.2579236279634129f, | 327 | 1.42M | 0.0000000000000000, | 328 | 1.42M | -0.0812611176717504f, | 329 | 1.42M | -0.1856718091610990f, | 330 | 1.42M | -0.3416446842253373f, | 331 | 1.42M | 0.3302282550303805f, | 332 | 1.42M | 0.0702790691196282f, | 333 | 1.42M | -0.0741750459581023f, | 334 | 1.42M | }, | 335 | 1.42M | { | 336 | 1.42M | 0.2500000000000000, | 337 | 1.42M | -0.1014005039375376f, | 338 | 1.42M | -0.2929100136981264f, | 339 | 1.42M | 0.0000000000000000, | 340 | 1.42M | 0.0000000000000000, | 341 | 1.42M | -0.0643507165794627f, | 342 | 1.42M | 0.3935103426921022f, | 343 | 1.42M | 0.0657870154914254f, | 344 | 1.42M | 0.0000000000000000, | 345 | 1.42M | 0.4082482904638634f, | 346 | 1.42M | 0.3078822139579031f, | 347 | 1.42M | 0.3852501370925211f, | 348 | 1.42M | -0.0857401903551927f, | 349 | 1.42M | -0.4613374887461554f, | 350 | 1.42M | 0.0000000000000000, | 351 | 1.42M | 0.2191868483885728f, | 352 | 1.42M | }, | 353 | 1.42M | { | 354 | 1.42M | 0.2500000000000000, | 355 | 1.42M | -0.1014005039375376f, | 356 | 1.42M | -0.1137907446044814f, | 357 | 1.42M | -0.1464291867126654f, | 358 | 1.42M | 0.0000000000000000, | 359 | 1.42M | -0.0643507165794627f, | 360 | 1.42M | 0.0829816309488214f, | 361 | 1.42M | 0.2388977352334547f, | 362 | 1.42M | -0.3531238544981624f, | 363 | 1.42M | 0.4082482904638630f, | 364 | 1.42M | -0.4826689115059858f, | 365 | 1.42M | -0.1741941265991621f, | 366 | 1.42M | -0.0476868035022928f, | 367 | 1.42M | 0.1253805944856431f, | 368 | 1.42M | -0.4326608024727457f, | 369 | 1.42M | -0.2546827712406641f, | 370 | 1.42M | }, | 371 | 1.42M | { | 372 | 1.42M | 0.2500000000000000, | 373 | 1.42M | -0.1014005039375374f, | 374 | 1.42M | 0.0000000000000000, | 375 | 1.42M | 0.4251149611657548f, | 376 | 1.42M | 0.0000000000000000, | 377 | 1.42M | -0.0643507165794626f, | 378 | 1.42M | -0.4517556589999480f, | 379 | 1.42M | 0.0000000000000000, | 380 | 1.42M | -0.6035859033230976f, | 381 | 1.42M | 0.0000000000000000, | 382 | 1.42M | 0.0000000000000000, | 383 | 1.42M | 0.0000000000000000, | 384 | 1.42M | -0.1426608480880724f, | 385 | 1.42M | -0.1381354035075845f, | 386 | 1.42M | 0.3487520519930227f, | 387 | 1.42M | 0.1135498731499429f, | 388 | 1.42M | }, | 389 | 1.42M | }; | 390 | | | 391 | 1.42M | const HWY_CAPPED(float, 16) d; | 392 | 4.26M | for (size_t i = 0; i < 16; i += Lanes(d)) { | 393 | 2.84M | auto scalar = Zero(d); | 394 | 48.3M | for (size_t j = 0; j < 16; j++) { | 395 | 45.5M | auto px = Set(d, pixels[j]); | 396 | 45.5M | auto basis = Load(d, k4x4AFVBasisTranspose[j] + i); | 397 | 45.5M | scalar = MulAdd(px, basis, scalar); | 398 | 45.5M | } | 399 | 2.84M | Store(scalar, d, coeffs + i); | 400 | 2.84M | } | 401 | 1.42M | } |
Unexecuted instantiation: enc_chroma_from_luma.cc:jxl::N_AVX3::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:jxl::N_AVX3_ZEN4::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:jxl::N_AVX3_SPR::(anonymous namespace)::AFVDCT4x4(float const*, float*) Unexecuted instantiation: enc_chroma_from_luma.cc:jxl::N_SSE2::(anonymous namespace)::AFVDCT4x4(float const*, float*) |