/external/eigen/unsupported/test/ |
D | cxx11_tensor_image_patch.cpp | 28 single_pixel_patch = tensor.extract_image_patches(1, 1); in test_simple_patch() 37 single_pixel_patch_row_major = tensor_row_major.extract_image_patches(1, 1); in test_simple_patch() 67 entire_image_patch = tensor.extract_image_patches(3, 5); in test_simple_patch() 76 entire_image_patch_row_major = tensor_row_major.extract_image_patches(3, 5); in test_simple_patch() 121 twod_patch = tensor.extract_image_patches(2, 2); in test_simple_patch() 130 twod_patch_row_major = tensor_row_major.extract_image_patches(2, 2); in test_simple_patch() 197 …Tensor<float, 5> result = tensor.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING… in test_patch_padding_valid() 212 …Tensor<float, 5, RowMajor> result_row_major = tensor_row_major.extract_image_patches(ksize, ksize,… in test_patch_padding_valid() 270 …Tensor<float, 5> result = tensor.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING… in test_patch_padding_valid_same_value() 285 …Tensor<float, 5, RowMajor> result_row_major = tensor_row_major.extract_image_patches(ksize, ksize,… in test_patch_padding_valid_same_value() [all …]
|
D | cxx11_tensor_image_patch_sycl.cpp | 59 gpu_single_patch_col_major.device(sycl_device)=gpu_col_major.extract_image_patches(1, 1); in test_simple_image_patch_sycl() 74 gpu_single_patch_row_major.device(sycl_device)=gpu_row_major.extract_image_patches(1, 1); in test_simple_image_patch_sycl() 111 gpu_entire_image_patch_col_major.device(sycl_device)=gpu_col_major.extract_image_patches(3, 5); in test_simple_image_patch_sycl() 126 gpu_entire_image_patch_row_major.device(sycl_device)=gpu_row_major.extract_image_patches(3, 5); in test_simple_image_patch_sycl() 177 gpu_twod_patch_col_major.device(sycl_device)=gpu_col_major.extract_image_patches(2, 2); in test_simple_image_patch_sycl() 192 gpu_twod_patch_row_major.device(sycl_device)=gpu_row_major.extract_image_patches(2, 2); in test_simple_image_patch_sycl() 296 …gpu_result_col_major.device(sycl_device)=gpu_col_major.extract_image_patches(ksize, ksize, stride,… in test_patch_padding_valid_sycl() 311 …gpu_result_row_major.device(sycl_device)=gpu_row_major.extract_image_patches(ksize, ksize, stride,… in test_patch_padding_valid_sycl() 397 …gpu_result_col_major.device(sycl_device)=gpu_col_major.extract_image_patches(ksize, ksize, stride,… in test_patch_padding_valid_same_value_sycl() 412 …gpu_result_row_major.device(sycl_device)=gpu_row_major.extract_image_patches(ksize, ksize, stride,… in test_patch_padding_valid_same_value_sycl() [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/image_ops/ |
D | extract_image_patches_grad_test.py | 105 return array_ops.extract_image_patches(in_val, ksizes, strides, 124 patches = array_ops.extract_image_patches(images, 159 out_val = array_ops.extract_image_patches(in_val,
|
D | extract_image_patches_op_test.py | 42 out_tensor = array_ops.extract_image_patches(
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | extract_image_patches_op.h | 39 .extract_image_patches(patch_cols, patch_rows, stride_cols, in operator()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_backward_spatial_convolutions.h | 266 .extract_image_patches( 274 .extract_image_patches(kernelRows, kernelCols, 1, 1, row_in_stride, 571 .extract_image_patches(inputRows, inputCols, row_in_stride, 579 .extract_image_patches(
|
D | eigen_pooling.h | 105 .extract_image_patches( 433 .extract_image_patches(patchRows, patchCols, strideRows, strideCols,
|
D | eigen_spatial_convolutions-inl.h | 1738 .extract_image_patches( 1749 .extract_image_patches( 1764 .extract_image_patches( 1771 .extract_image_patches(kernelRows, kernelCols, row_stride,
|
D | eigen_spatial_convolutions_test.cc | 1347 out.extract_image_patches(2, 2, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 0) in TEST() 1358 .extract_image_patches(2, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0) in TEST()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ExtractVolumePatches.pbtxt | 45 …`input` and put them in the `\"depth\"` output dimension. 3D extension of `extract_image_patches`."
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | extract_image_patches_op_test.py | 46 out_tensor = array_ops.extract_image_patches(
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | runtime_conv_impl.h | 95 .extract_image_patches( in EigenConv2DImpl()
|
/external/tensorflow/tensorflow/python/ops/ |
D | array_ops.py | 6595 return gen_array_ops.extract_image_patches(images, sizes, strides, rates, 6603 def extract_image_patches( # pylint: disable=missing-docstring function 6641 return gen_array_ops.extract_image_patches(images, ksizes, strides, rates, 6645 extract_image_patches.__doc__ = gen_array_ops.extract_image_patches.__doc__
|
D | array_grad.py | 1031 input_idx_patched = gen_array_ops.extract_image_patches(
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.image.pbtxt | 92 name: "extract_image_patches"
|
D | tensorflow.pbtxt | 1268 name: "extract_image_patches"
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 833 extract_image_patches(const Index patch_rows = 1, const Index patch_cols = 1, 843 extract_image_patches(const Index patch_rows, const Index patch_cols, in extract_image_patches() function
|
D | README.md | 1707 ### <Operation> extract_image_patches(const Index patch_rows, const Index patch_cols, const Index … 1745 twod_patch = tensor.extract_image_patches<2, 2>(); 1755 twod_patch_row_major = tensor_row_major.extract_image_patches<2, 2>();
|
/external/tensorflow/ |
D | RELEASE.md | 7989 * New endpoints in `tf.image` namespace: `tf.image.extract_image_patches`
|