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