HomeSort by relevance Sort by last modified time
    Searched defs:strides (Results 176 - 200 of 219) sorted by null

1 2 3 4 5 6 78 9

  /external/tensorflow/tensorflow/contrib/lite/toco/
import_tensorflow.cc 396 const auto& strides = GetListAttr(node, "strides"); local
397 CHECK_EQ(strides.i_size(), 4);
398 CHECK_EQ(strides.i(0), 1);
399 CHECK_EQ(strides.i(3), 1);
400 conv->stride_height = strides.i(1);
401 conv->stride_width = strides.i(2);
449 const auto& strides = GetListAttr(node, "strides"); local
450 CHECK_EQ(strides.i_size(), 4)
906 const auto& strides = GetListAttr(node, "strides"); local
944 const auto& strides = GetListAttr(node, "strides"); local
1528 const auto& strides = GetListAttr(node, "strides"); local
    [all...]
model.h 797 // inputs[3]: optional: the strides array
805 std::vector<int> strides; member in struct:toco::StridedSliceOperator
    [all...]
  /external/tensorflow/tensorflow/core/framework/
common_shape_fns.cc 92 const std::array<int64, 3>& strides,
96 TF_RETURN_IF_ERROR(GetWindowedOutputSize(input[i], window[i], strides[i],
106 const std::array<int64, 3>& strides,
111 input[i], window[i], dilations[i], strides[i], padding_type,
413 std::vector<int32> strides; local
414 TF_RETURN_IF_ERROR(c->GetAttr("strides", &strides));
416 // strides.size() should be 4 (NCHW) even if the input is 5 (NCHW_VECT_C).
417 if (strides.size() != 4) {
421 strides.size())
490 std::vector<int32> strides; local
559 std::vector<int32> strides; local
644 std::vector<int32> strides; local
794 std::vector<int32> strides; local
865 std::vector<int32> strides; local
956 std::vector<int32> strides; local
    [all...]
  /external/tensorflow/tensorflow/core/graph/
mkl_layout_pass.cc 611 std::vector<int32> ksize, strides; local
613 CHECK_EQ(GetNodeAttr(n->def(), "strides", &strides).ok(), true);
619 GetTensorDim(strides, data_format, 'N') == 1 &&
621 GetTensorDim(strides, data_format, 'C') == 1) {
1474 std::vector<int32> strides; local
1511 std::vector<int32> strides; local
1562 std::vector<int32> ksize, strides; local
1734 std::vector<int32> strides; local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
virtual_scheduler_test.cc 119 std::vector<int> strides = {1, 1, 1, 1}; local
120 auto c0 = ops::Conv2D(s.WithOpName("c0"), x, f, strides, "SAME");
121 auto c1 = ops::Conv2D(s.WithOpName("c1"), y, f, strides, "SAME");
122 auto c2 = ops::Conv2D(s.WithOpName("c2"), z, f, strides, "SAME");
142 std::vector<int> strides = {1, 1, 1, 1}; local
143 auto y = ops::Conv2D(s.WithOpName("y"), x, f, strides, "SAME");
    [all...]
  /external/tensorflow/tensorflow/core/util/
mkl_util.h 97 const size_t* strides) {
105 strides_[ii] = strides[ii];
107 CHECK_EQ(dnnLayoutCreate_F32(&tfLayout_, dimension, sizes, strides),
248 (SIZES_OFFSET(dims) + dims * sizeof(size_t)) // Location of strides
334 const memory::dims& strides,
544 auto strides = CalculateTFStrides(dims); local
545 return CreateBlockedMemDescHelper(dims, strides, data_.T_);
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
dnn.h 262 // Full strides of the underlying data, ordered according to a specific
571 std::vector<int64> strides() const { return filter_strides_; } function in class:perftools::gputools::dnn::ConvolutionDescriptor
687 std::vector<int64> strides() const { return strides_; } function in class:perftools::gputools::dnn::PoolingDescriptor
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /external/python/cpython2/Include/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /external/python/cpython3/Include/
object.h 187 pointed to by strides in simple case.*/
192 Py_ssize_t *strides; member in struct:bufferinfo
    [all...]
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_dnn.cc 445 // cuDNN requires the strides and dims to be ordered as BDYX.
452 std::vector<int> strides(nd);
454 std::transform(strides64.cbegin(), strides64.cend(), strides.begin(),
459 parent_, handle_, elem_type, nd, dims.data(), strides.data());
622 const auto& strides64 = convolution_descriptor.strides();
631 std::vector<int> strides(convolution_descriptor.ndims());
634 std::transform(strides64.cbegin(), strides64.cend(), strides.begin(),
645 strides.data(), dilations.data(),
706 const std::vector<int64> strides64 = pooling_descriptor.strides();
713 std::vector<int> strides(nd)
1194 int strides[] = {dims[1] * dims[2], dims[2], 1}; local
1324 int strides[] = {dims[1] * dims[2], dims[2], 1}; local
1377 int strides[] = {dims[1] * dims[2], dims[2], 1}; local
    [all...]
  /external/webrtc/talk/app/webrtc/java/jni/
peerconnection_jni.cc 790 jintArray strides = jni()->NewIntArray(3); local
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 169 pointed to by strides in simple case.*/
174 Py_ssize_t *strides; member in struct:bufferinfo
176 Py_ssize_t smalltable[2]; /* static store for shape and strides of
    [all...]
  /external/python/cpython3/Modules/
_testcapimodule.c 2854 Py_ssize_t strides = 2 * itemsize; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 1801 const int strides[3] = { src->y_stride, src->uv_stride, src->uv_stride }; local
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3HWI.cpp 8196 Vector<int32_t> strides; local
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3HWI.cpp 10999 Vector<int32_t> strides; local
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 2058 milliseconds

1 2 3 4 5 6 78 9