Home
last modified time | relevance | path

Searched refs:dct_type (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/signal/
Ddct_ops_test.py106 def _compare(self, signals, norm, dct_type, atol=5e-4, rtol=5e-4): argument
108 np_dct = NP_DCT[dct_type](signals, norm)
109 tf_dct = dct_ops.dct(signals, type=dct_type, norm=norm).eval()
111 np_idct = NP_IDCT[dct_type](signals, norm)
112 tf_idct = dct_ops.idct(signals, type=dct_type, norm=norm).eval()
115 scipy_dct = fftpack.dct(signals, type=dct_type, norm=norm)
117 scipy_idct = fftpack.idct(signals, type=dct_type, norm=norm)
121 tf_dct, type=dct_type, norm=norm).eval()
123 tf_idct, type=dct_type, norm=norm).eval()
125 if dct_type == 1:
[all …]
/external/tensorflow/tensorflow/python/ops/signal/
Ddct_ops.py31 def _validate_dct_arguments(input_tensor, dct_type, n, axis, norm): argument
37 if dct_type not in (1, 2, 3):
39 if dct_type == 1:
/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsurface.c82 mb->macroblock_modes.bits.dct_type = xvmc_mb->dct_type; in MacroBlocksToPipe()
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
Dtest_rendering.c202 mb->dct_type = XVMC_DCT_TYPE_FRAME; in main()
Dxvmc_bench.c251 mb_array.macro_blocks[mby * mbw + mbx].dct_type = XVMC_DCT_TYPE_FRAME; in main()
/external/mesa3d/src/gallium/include/pipe/
Dp_video_state.h191 unsigned int dct_type:1; member
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv84_video_vp.c270 if (macrob->macroblock_modes.bits.dct_type) in nv84_decoder_vp_mpeg12_mb()
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_mpeg12_bitstream.c903 mb.macroblock_modes.bits.dct_type = vl_vlc_get_uimsbf(&bs->vlc, 1); in decode_slice()
Dvl_mpeg12_decoder.c430 stream->coding = mb->macroblock_modes.bits.dct_type; in UploadYcbcrBlocks()
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_video.c169 if (luma && mb->macroblock_modes.bits.dct_type == PIPE_MPEG12_DCT_TYPE_FIELD) in nouveau_vpe_mb_dct_header()