Home
last modified time | relevance | path

Searched defs:strides (Results 1 – 25 of 182) sorted by relevance

12345678

/external/tensorflow/tensorflow/python/layers/
Dpooling.py53 def __init__(self, pool_function, pool_size, strides, argument
119 def __init__(self, pool_size, strides, argument
133 def average_pooling1d(inputs, pool_size, strides, argument
186 def __init__(self, pool_size, strides, argument
200 def max_pooling1d(inputs, pool_size, strides, argument
259 def __init__(self, pool_function, pool_size, strides, argument
328 def __init__(self, pool_size, strides, argument
339 pool_size, strides, argument
398 def __init__(self, pool_size, strides, argument
409 pool_size, strides, argument
[all …]
Dconvolutional.py89 strides=1, argument
279 strides=1, argument
320 strides=1, argument
477 strides=(1, 1), argument
518 strides=(1, 1), argument
683 strides=(1, 1, 1), argument
724 strides=(1, 1, 1), argument
897 strides=1, argument
1052 strides=1, argument
1201 strides=(1, 1), argument
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_jpeg.cc37 const int* strides, in JpegCopyI420()
55 const int* strides, in JpegI422ToI420()
73 const int* strides, in JpegI444ToI420()
91 const int* strides, in JpegI411ToI420()
109 const int* strides, in JpegI400ToI420()
235 const int* strides, in JpegI420ToARGB()
249 const int* strides, in JpegI422ToARGB()
263 const int* strides, in JpegI444ToARGB()
277 const int* strides, in JpegI411ToARGB()
291 const int* strides, in JpegI400ToARGB()
/external/libyuv/files/source/
Dconvert_jpeg.cc37 const int* strides, in JpegCopyI420()
51 const int* strides, in JpegI422ToI420()
65 const int* strides, in JpegI444ToI420()
79 const int* strides, in JpegI400ToI420()
194 const int* strides, in JpegI420ToARGB()
205 const int* strides, in JpegI422ToARGB()
216 const int* strides, in JpegI444ToARGB()
227 const int* strides, in JpegI400ToARGB()
/external/tensorflow/tensorflow/contrib/fused_conv/python/ops/
Dfused_conv2d_bias_activation_benchmark.py32 def build_conv_bias_relu_graph(device, input_shape, filter_shape, strides, argument
77 def build_fused_conv_bias_relu_graph(device, input_shape, filter_shape, strides, argument
134 def _run_graph(self, device, input_shape, filter_shape, strides, padding, argument
/external/tensorflow/tensorflow/core/lib/random/
Drandom_distributions_test.cc147 const std::vector<int>& strides, T z_limit) { in UniformMomentsTest()
165 const std::vector<int>& strides, T z_limit) { in NormalMomentsTest()
240 const std::vector<int>& strides, T z_limit) { in RandomParametersMomentsTest()
256 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
261 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
266 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
271 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
276 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
281 const std::vector<int> strides = {0, 1, 4, 17}; in TEST() local
/external/tensorflow/tensorflow/core/kernels/
Dconv_grad_ops.cc50 const gtl::ArraySlice<int32>& dilations, const std::vector<int32>& strides, in ConvBackpropExtractAndVerifyDimensionV2()
89 const std::vector<int32>& strides, Padding padding, int spatial_dim, in ConvBackpropExtractAndVerifyDimension()
100 const gtl::ArraySlice<int32>& dilations, const std::vector<int32>& strides, in ConvBackpropComputeDimensionsV2()
154 const std::vector<int32>& strides, in ConvBackpropComputeDimensions()
Dmkl_conv_ops.h65 MklDnnConvUtil(OpKernelContext* context, const std::vector<int32>& strides, in MklDnnConvUtil()
72 virtual inline void GetStridesInMklOrder(memory::dims* strides) { in GetStridesInMklOrder()
216 const memory::dims& strides, memory::dims* output_dims_tf_order, in GetOutputAndPadSizeInMklOrder()
274 size_t src_index, size_t filter_index, const memory::dims& strides, in GetOutputAndPadSizeInMklOrder()
303 memory::dims* strides, memory::dims* output_dims_tf_order, in GetConvFwdSizesInMklOrder()
409 memory::dims padding_l, padding_r, strides, fwd_output_dims; in Compute() local
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DYUVImage.java90 public YUVImage(int width, int[] strides, int height, int subsamp) { in YUVImage()
147 public YUVImage(byte[][] planes, int[] offsets, int width, int[] strides, in YUVImage()
211 public void setBuf(byte[][] planes, int[] offsets, int width, int strides[], in setBuf()
216 private void setBuf(byte[][] planes, int[] offsets, int width, int strides[], in setBuf()
293 int[] strides = new int[nc]; in setBuf() local
/external/tensorflow/tensorflow/compiler/tests/
Dpooling_ops_test.py74 def _VerifyOneTest(self, pool_func, input_sizes, ksize, strides, padding, argument
110 def _VerifyValues(self, pool_func, input_sizes, ksize, strides, padding, argument
296 strides, padding, data_format): argument
384 strides, padding): argument
467 def AvgPoolGrad(inputs, outputs, output_gradients, ksize, strides, padding, argument
Dpooling_ops_3d_test.py34 def _AvgPoolGrad(inputs, outputs, output_gradients, ksize, strides, padding): argument
46 def _VerifyValues(self, pool_func, input_sizes, window, strides, padding, argument
191 strides, padding): argument
/external/tensorflow/tensorflow/python/ops/
Dconv2d_benchmark.py34 def build_graph(device, input_shape, filter_shape, strides, padding, dtype, argument
84 def _run_graph(self, device, input_shape, filter_shape, strides, padding, argument
Dnn_ops.py55 strides=None, argument
133 strides=None, argument
187 def _conv1d(self, input, filter, strides, padding, data_format, name): argument
603 def _get_strides_and_dilation_rate(num_spatial_dims, strides, dilation_rate): argument
651 strides=None, argument
805 strides=None, argument
879 strides=None, argument
1187 strides, argument
1413 strides, argument
2065 def avg_pool(value, ksize, strides, padding, data_format="NHWC", name=None): argument
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_striding.cpp21 array<ptrdiff_t, 4> strides; in test_simple_striding() local
74 array<ptrdiff_t, 4> strides; in test_striding_as_lvalue() local
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
Dpooling.py48 def __init__(self, pool_size=2, strides=None, padding='valid', **kwargs): argument
81 def __init__(self, pool_size=2, strides=None, padding='valid', **kwargs): argument
141 strides=None, argument
207 strides=None, argument
269 strides=None, argument
331 strides=None, argument
/external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.fill/
Dassign_value.pass.cpp29 typedef std::valarray<std::size_t> strides; in main() typedef
/external/tensorflow/tensorflow/python/keras/_impl/keras/applications/
Dmobilenet.py185 strides=(1, 1), argument
553 def _conv_block(inputs, filters, alpha, kernel=(3, 3), strides=(1, 1)): argument
617 strides=(1, 1), argument
/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.assign/
Dgslice_array_assign.pass.cpp29 typedef std::valarray<std::size_t> strides; in main() typedef
/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.cons/
Dgslice_array.pass.cpp29 typedef std::valarray<std::size_t> strides; in main() typedef
/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.sub/
Dgslice_non_const.pass.cpp29 typedef std::valarray<std::size_t> strides; in main() typedef
/external/deqp/modules/gles2/stress/
Des2sVertexArrayTests.cpp75 int strides[] = {17}; in init() local
144 int strides[] = {17}; in init() local
215 …int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but … in init() local
285 …int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but … in init() local
/external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
Dmodulo.pass.cpp32 typedef std::valarray<std::size_t> strides; in main() typedef
Dshift_right.pass.cpp32 typedef std::valarray<std::size_t> strides; in main() typedef
Dxor.pass.cpp32 typedef std::valarray<std::size_t> strides; in main() typedef
Dshift_left.pass.cpp32 typedef std::valarray<std::size_t> strides; in main() typedef

12345678