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