Home
last modified time | relevance | path

Searched refs:h_in (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/
Dconv2d_transpose_test.py69 h_in = h > 0 and h < y_shape[1] - 1
71 if h_in and w_in:
73 elif h_in or w_in:
104 h_in = h % strides[1] == 0 and h > 0 and h < y_shape[1] - 1
106 if h_in and w_in:
108 elif h_in or w_in:
145 h_in = h % strides[1] == 0 and h > pad and h < y_shape[
149 if h_in and w_in:
151 elif h_in or w_in:
213 h_in = h > 0 and h < y_shape[2] - 1
[all …]
Dconv3d_transpose_test.py73 h_in = h > 0 and h < y_shape[2] - 1
75 if d_in + h_in + w_in == 3:
77 elif d_in + h_in + w_in == 2:
79 elif d_in or h_in or w_in:
111 h_in = h % strides[2] == 0 and 0 < h < y_shape[2] - 1
113 if d_in + h_in + w_in == 3:
115 elif d_in + h_in + w_in == 2:
117 elif d_in or h_in or w_in:
184 h_in = h % strides[2] == 0 and pad < h < y_shape[2] - 1 - pad
186 if d_in + h_in + w_in == 3:
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dconv3d_test.py109 h_in = h > 0 and h < y_shape[2] - 1
111 if d_in + h_in + w_in == 3:
113 elif d_in + h_in + w_in == 2:
115 elif d_in or h_in or w_in:
147 h_in = h % strides[2] == 0 and 0 < h < y_shape[2] - 1
149 if d_in + h_in + w_in == 3:
151 elif d_in + h_in + w_in == 2:
153 elif d_in or h_in or w_in:
190 h_in = h % strides[2] == 0 and pad < h < y_shape[2] - 1 - pad
192 if d_in + h_in + w_in == 3:
[all …]
/external/tensorflow/tensorflow/core/kernels/
Ddilation_ops_gpu.cu.cc56 const int h_in = h_beg + h * rate_rows; in DilationKernel() local
57 if (h_in >= 0 && h_in < input_rows) { in DilationKernel()
63 input_cols * (h_in + input_rows * b))] + in DilationKernel()
101 const int h_in = h_beg + h * rate_rows; in DilationBackpropInputKernel() local
102 if (h_in >= 0 && h_in < input_rows) { in DilationBackpropInputKernel()
108 input_cols * (h_in + input_rows * b))] + in DilationBackpropInputKernel()
112 h_in_max = h_in; in DilationBackpropInputKernel()
151 const int h_in = h_beg + h * rate_rows; in DilationBackpropFilterKernel() local
152 if (h_in >= 0 && h_in < input_rows) { in DilationBackpropFilterKernel()
158 input_cols * (h_in + input_rows * b))] + in DilationBackpropFilterKernel()
Ddilation_ops.cc189 const int h_in = h_beg + h * rate_rows; in operator ()() local
190 if (h_in >= 0 && h_in < input_rows) { in operator ()()
194 const T val = input(b, h_in, w_in, d) + filter(h, w, d); in operator ()()
306 const int h_in = h_beg + h * rate_rows; in operator ()() local
307 if (h_in >= 0 && h_in < input_rows) { in operator ()()
311 const T val = input(b, h_in, w_in, d) + filter(h, w, d); in operator ()()
314 h_in_max = h_in; in operator ()()
426 const int h_in = h_beg + h * rate_rows; in operator ()() local
427 if (h_in >= 0 && h_in < input_rows) { in operator ()()
431 const T val = input(b, h_in, w_in, d) + filter(h, w, d); in operator ()()
Dctc_loss_op.cc58 const T* h_in = labels_indices->flat<T>().data(); in DoHistogram() local
60 const T& key = h_in[i * 2]; in DoHistogram()
/external/OpenCL-CTS/test_conformance/spirv_new/
Dtest_op_function.cpp24 const std::vector<float> &h_in) in test_function() argument
27 int num = (int)h_in.size(); in test_function()
33 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, bytes, &h_in[0], 0, NULL, NULL); in test_function()
59 if (h_out[i] != -h_in[i]) { in test_function()
Dtest_op_vector_insert.cpp20 const std::vector<Ts> &h_in, const int n) in test_insert() argument
36 int num = (int)h_in.size(); in test_insert()
43 h_ref[i].s[j] = h_in[i] + genrand<Ts>(seed); in test_insert()
51 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, in_bytes, &h_in[0], 0, NULL, NULL); in test_insert()
85 refVec.s[k] = h_in[i]; in test_insert()
Dtest_op_vector_extract.cpp20 const std::vector<Tv> &h_in, const int n) in test_extract() argument
37 int num = (int)h_in.size(); in test_extract()
44 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, in_bytes, &h_in[0], 0, NULL, NULL); in test_extract()
70 if (h_out[i] != h_in[i].s[k]) { in test_extract()
Dtest_linkage.cpp110 std::vector<cl_float> h_in(num); in TEST_SPIRV_FUNC() local
113 h_in[i] = genrand<cl_float>(seed); in TEST_SPIRV_FUNC()
120 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, bytes, &h_in[0], 0, NULL, NULL); in TEST_SPIRV_FUNC()
136 if (h_out[i] != -h_in[i]) { in TEST_SPIRV_FUNC()
Dtest_op_negate.cpp26 const std::vector<Tv> &h_in, in test_negation() argument
37 int num = (int)h_in.size(); in test_negation()
43 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, bytes, &h_in[0], 0, NULL, NULL); in test_negation()
69 if (h_out[i] != negate(h_in[i])) { in test_negation()
Dtest_op_loop_merge.cpp26 const std::vector<T> &h_in, in test_selection_merge() argument
39 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, in_bytes, &h_in[0], 0, NULL, NULL); in test_selection_merge()
Dtest_decorate.cpp318 std::vector<Ti> &h_in, in TEST_SATURATED_CONVERSION()
328 const int num = h_in.size(); in TEST_SATURATED_CONVERSION()
339 err = clEnqueueWriteBuffer(queue, in, CL_TRUE, 0, in_bytes, &h_in[0], 0, NULL, NULL); in TEST_SATURATED_CONVERSION()
365 i, h_in[i], h_out[i], h_res[i]); in TEST_SATURATED_CONVERSION()
/external/linux-kselftest/tools/testing/selftests/drivers/net/mlxsw/
Dqos_lib.sh29 local h_in=$1; shift # Where the traffic egresses the host
34 $MZ $h_in -p 8000 -A $sip -B $dip -c 0 \
/external/python/cpython2/Modules/zlib/
Dmake_vms.com252 $ close/nolog h_in
539 $ close h_in
/external/rust/crates/libz-sys/src/zlib/
Dmake_vms.com252 $ close/nolog h_in
539 $ close h_in
/external/curl/packages/vms/
Dconfig_h.com15 $! It is easier to just read the config.h_in file and make up tests based