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