Searched refs:first_output (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | spectrogram_test.cc | 212 std::vector<std::vector<complex<double>>> first_output; in TEST() local 215 sgram.ComputeComplexSpectrogram(input, &first_output); in TEST() 220 ASSERT_EQ(first_output.size(), second_output.size()); in TEST() 221 int slice_size = first_output[0].size(); in TEST() 222 for (int i = 0; i < first_output.size(); ++i) { in TEST() 223 ASSERT_EQ(slice_size, first_output[i].size()); in TEST() 226 ASSERT_EQ(first_output[i][j], second_output[i][j]); in TEST()
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_idct.c | 394 unsigned first_output, struct ureg_dst tex) in vl_idct_stage2_vert_shader() argument 406 --first_output; in vl_idct_stage2_vert_shader() 408 o_l_addr[0] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_L_ADDR0); in vl_idct_stage2_vert_shader() 409 o_l_addr[1] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_L_ADDR1); in vl_idct_stage2_vert_shader() 411 o_r_addr[0] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_R_ADDR0); in vl_idct_stage2_vert_shader() 412 o_r_addr[1] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_R_ADDR1); in vl_idct_stage2_vert_shader()
|
D | vl_mc.h | 70 unsigned first_output,
|
D | vl_idct.h | 84 unsigned first_output, struct ureg_dst tex);
|
D | vl_mpeg12_decoder.c | 1066 unsigned first_output, in mc_vert_shader_callback() argument 1077 vl_idct_stage2_vert_shader(idct, shader, first_output, tex); in mc_vert_shader_callback() 1079 o_vtex = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output); in mc_vert_shader_callback()
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | load_v1_in_v2_test.py | 111 first_output = array_ops.identity(start * v, name="first_output") 123 first_output)})})
|
/external/tensorflow/tensorflow/python/eager/ |
D | wrap_function_test.py | 211 first_output, second_output = increments(constant_op.constant(2)) 214 self.assertIs(None, first_output)
|
/external/v8/src/compiler/ |
D | register-allocator.cc | 1716 UnallocatedOperand* first_output = UnallocatedOperand::cast(output); in MeetConstraintsAfter() local 1718 data()->GetOrCreateLiveRangeFor(first_output->virtual_register()); in MeetConstraintsAfter() 1720 if (first_output->HasFixedPolicy()) { in MeetConstraintsAfter() 1721 int output_vreg = first_output->virtual_register(); in MeetConstraintsAfter() 1725 if (first_output->HasSecondaryStorage()) { in MeetConstraintsAfter() 1728 std::make_pair(range, first_output->GetSecondaryStorage())); in MeetConstraintsAfter() 1730 AllocateFixed(first_output, instr_index, is_tagged); in MeetConstraintsAfter() 1733 if (first_output->IsStackSlot()) { in MeetConstraintsAfter() 1734 DCHECK(LocationOperand::cast(first_output)->index() < in MeetConstraintsAfter() 1736 range->SetSpillOperand(LocationOperand::cast(first_output)); in MeetConstraintsAfter() [all …]
|
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/ |
D | cudnn_rnn_test.py | 422 first_output, _ = cudnn_rnn.CudnnGRU(1, 100)( 426 self.assertAllEqual([28, 100, 100], first_output.shape) 430 first_output, _ = cudnn_rnn.CudnnGRU(1, 100)( 434 return (math_ops.reduce_sum(first_output) +
|