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