/external/tensorflow/tensorflow/python/kernel_tests/ |
D | conv2d_backprop_filter_grad_test.py | 47 in_val = constant_op.constant( 53 in_val, 62 in_val, 68 [in_val, out_backprop_val], [in_shape, out_backprop_shape], 90 in_val = constant_op.constant( 96 in_val, 106 in_val, 113 [in_val, out_backprop_val], [in_shape, out_backprop_shape],
|
D | extract_image_patches_grad_test.py | 94 in_val = constant_op.constant( 104 def extract(in_val, argument 109 return array_ops.extract_image_patches(in_val, ksizes, strides, 113 *gradient_checker_v2.compute_gradient(extract, [in_val])) 159 in_val = array_ops.placeholder(shape=test_shape, dtype=dtypes.float32) 161 feed_dict = {in_val: np.random.random(in_shape)} 163 out_val = array_ops.extract_image_patches(in_val, 172 in_val, in_shape, out_val, out_shape)
|
D | conv3d_backprop_filter_v2_grad_test.py | 42 in_val = constant_op.constant( 48 conv_out = nn_ops.conv3d(in_val, 55 output = nn_ops.conv3d_backprop_filter_v2(in_val, filter_shape, 59 [in_val, out_backprop_val], [in_shape, out_backprop_shape],
|
D | decode_compressed_op_test.py | 63 in_val = [self._compress(b"AaAA", compression_type), 65 result = self.evaluate(decode(in_val))
|
D | extract_volume_patches_grad_test.py | 75 def extract(in_val, ksizes=ksizes, strides=strides, padding=padding): argument 76 return array_ops.extract_volume_patches(in_val, ksizes, strides,
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | test_mmap.c | 18 __u64 in_val = 0; variable 27 out_val = in_val; in test_mmap() 30 bpf_map_update_elem(&data_map, &two, (const void *)&in_val, 0); in test_mmap() 40 val = in_val * 3; in test_mmap()
|
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ |
D | mmap.c | 10 __u64 in_val; member 78 CHECK_FAIL(bss_data->in_val); in test_mmap() 89 bss_data->in_val = 123; in test_mmap() 95 CHECK_FAIL(bss_data->in_val != 123); in test_mmap() 159 bss_data->in_val = 321; in test_mmap() 161 CHECK_FAIL(bss_data->in_val != 321); in test_mmap() 204 CHECK_FAIL(bss_data->in_val != 321); in test_mmap()
|
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/entrypoint/ |
D | frag_pc_entry_point.amber | 12 ; vec4 in_val; 18 ; outColor = u_pushConstants.in_val; 29 OpMemberName %pushConstants 0 "in_val"
|
D | comp_pc_entry_point.amber | 10 ; int in_val; 19 ; out_SSBO[gl_GlobalInvocationID.z] = u_pushConstants.in_val; 33 OpMemberName %pushConstants 0 "in_val"
|
D | tess_eval_ssbo_entry_point.amber | 51 ; vec4 in_val; 60 ; frag_color = tse_color[0]+in_val; 91 OpMemberName %input_buffer 0 "in_val"
|
D | tess_con_ubo_entry_point.amber | 31 ; vec4 in_val; 37 ; tse_color[ID] = tsc_color[ID]+in_val; 62 OpMemberName %input_buffer 0 "in_val"
|
D | tess_eval_pc_entry_point.amber | 50 ; vec4 in_val; 59 ; frag_color = tse_color[0]+pc.in_val; 90 OpMemberName %pushConstants 0 "in_val"
|
D | tess_eval_ubo_entry_point.amber | 51 ; vec4 in_val; 60 ; frag_color = tse_color[0]+in_val; 91 OpMemberName %input_buffer 0 "in_val"
|
D | tess_con_ssbo_entry_point.amber | 31 ; vec4 in_val; 37 ; tse_color[ID] = tsc_color[ID]+in_val; 62 OpMemberName %input_buffer 0 "in_val"
|
D | tess_con_pc_entry_point.amber | 29 ; vec4 in_val; 36 ; tse_color[ID] = tsc_color[ID]+pc.in_val; 61 OpMemberName %pushConstants 0 "in_val"
|
/external/deqp-deps/amber/tests/cases/ |
D | graphics_push_constants.amber | 20 vec2 in_val[4]; 24 gl_Position = vec4(u_pushConstants.in_val[gl_VertexIndex], 0.0, 1.0);
|
D | graphics_push_constants.vkscript | 19 vec2 in_val[4]; 23 gl_Position = vec4(u_pushConstants.in_val[gl_VertexIndex], 0.0, 1.0);
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | conv3d_test.py | 44 in_val = constant_op.constant( 50 conv_out = nn_ops.conv3d(in_val, 57 output = nn_ops.conv3d_backprop_filter_v2(in_val, filter_shape, 61 [in_val, out_backprop_val], [in_shape, out_backprop_shape],
|
/external/tensorflow/tensorflow/core/nccl/ |
D | nccl_manager_test.cc | 134 auto in_val = in_cpu.flat<Scalar>()(j); in MakeReductionTestCase() local 137 out_expr(j) = out_expr(j) * in_val; in MakeReductionTestCase() 139 out_expr(j) = out_expr(j) + in_val; in MakeReductionTestCase() 141 if (in_val > out_expr(j)) { in MakeReductionTestCase() 142 out_expr(j) = in_val; in MakeReductionTestCase() 145 if (in_val < out_expr(j)) { in MakeReductionTestCase() 146 out_expr(j) = in_val; in MakeReductionTestCase() 186 auto in_val = in_cpu.flat<Scalar>()(j); in MakeGatherTestCase() local 188 out_expr(gather_idx + j) = in_val; in MakeGatherTestCase()
|
/external/tensorflow/tensorflow/python/ops/ |
D | collective_ops_test.py | 303 def _testCollectiveBroadcast(self, in_val): argument 309 in0 = constant_op.constant(in_val) 313 c1 = constant_op.constant(in_val) 319 self.assertAllClose(results[0], in_val, rtol=1e-5, atol=1e-5) 320 self.assertAllClose(results[1], in_val, rtol=1e-5, atol=1e-5)
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | llvm.amdgcn.mov.dpp.ll | 49 %in_val = load float, float addrspace(1)* %in 50 %else_val = fadd float %b, %in_val
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/ |
D | switch_case_fallthrough.cpp | 69 OpName %9 "in_val" in TEST_F()
|
/external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/ |
D | switch_case_fallthrough.cpp | 69 OpName %9 "in_val" in TEST_F()
|
D | simple.cpp | 61 OpName %9 "in_val" in TEST_F()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/dominator_tree/ |
D | switch_case_fallthrough.cpp | 69 OpName %9 "in_val" in TEST_F()
|