Home
last modified time | relevance | path

Searched refs:dy_value (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/tests/st/ops/cpu/
Dtest_mirror_pad.py108 dy_value = Tensor(np.ones(obtained_ms_res.shape), dtype=mindspore.int32)
109 dx_value_obtained = GradNet(test_arr_ms, dy_value)[0].asnumpy()
149 dy_value = Tensor(np.ones(obtained_ms_res.shape), dtype=mindspore.int32)
150 dx_value_obtained = GradNet(test_arr_ms, dy_value)[0].asnumpy()
/third_party/mindspore/tests/st/ops/gpu/
Dtest_mirror_pad.py108 dy_value = Tensor(np.ones(obtained_ms_res.shape), dtype=mindspore.int32)
109 dx_value_obtained = GradNet(test_arr_ms, dy_value)[0].asnumpy()
149 dy_value = Tensor(np.ones(obtained_ms_res.shape), dtype=mindspore.int32)
150 dx_value_obtained = GradNet(test_arr_ms, dy_value)[0].asnumpy()
/third_party/boost/boost/gil/image_processing/
Dnumeric.hpp72 auto dy_value = dy(x, y); in compute_tensor_entries() local
74 m12_21(x, y) = dx_value * dy_value; in compute_tensor_entries()
75 m22(x, y) = dy_value * dy_value; in compute_tensor_entries()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dsync_batch_norm_grad_impl.cu57 float dy_value = HalfFloatInputConvert(dy[index]); in SyncBatchNormGradPre() local
58 dy_sum += dy_value; in SyncBatchNormGradPre()
59 dot_p += (input_value - mean) * dy_value; in SyncBatchNormGradPre()