Home
last modified time | relevance | path

Searched refs:get_strides (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/core/ops/grad/
Dpool_grad.h46 std::vector<int64_t> get_strides() const;
Dpool_grad.cc83 std::vector<int64_t> PoolGrad::get_strides() const { in get_strides() function in mindspore::ops::PoolGrad
/third_party/mindspore/mindspore/core/ops/
Dmax_pool.h64 std::vector<int64_t> get_strides() const;
Davg_pool.h64 std::vector<int64_t> get_strides() const;
Dmax_pool.cc45 std::vector<int64_t> MaxPool::get_strides() const { return GetValue<std::vector<int64_t>>(GetAttr(k… in get_strides() function in mindspore::ops::MaxPool
Davg_pool.cc45 std::vector<int64_t> AvgPool::get_strides() const { return GetValue<std::vector<int64_t>>(GetAttr(k… in get_strides() function in mindspore::ops::AvgPool
/third_party/boost/libs/python/example/numpy/
Dgaussian.cpp222 Py_intptr_t const * strides = array.get_strides(); in copy_ndarray_to_mv2()
/third_party/boost/boost/python/numpy/
Dndarray.hpp116 Py_intptr_t const * get_strides() const { return get_struct()->strides; } in get_strides() function in boost::python::numpy::ndarray
/third_party/boost/libs/python/doc/numpy/reference/
Dndarray.rst51 Py_intptr_t const * get_strides() const;
321 Py_intptr_t const * get_strides() const;
/third_party/boost/libs/python/doc/html/numpy/_sources/reference/
Dndarray.rst.txt51 Py_intptr_t const * get_strides() const;
321 Py_intptr_t const * get_strides() const;
/third_party/boost/libs/python/src/numpy/
Dndarray.cpp162 return get_strides()[normalize_index(n,get_nd())]; in strides()