Home
last modified time | relevance | path

Searched defs:tuple_slice (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/jit/python/
H A Dpybind_utils.h848 struct VISIBILITY_HIDDEN tuple_slice { struct
849 /*implicit*/ tuple_slice(py::tuple tup_) in tuple_slice() function
851 tuple_slice(py::tuple tup_, int64_t b_) in tuple_slice() function
853 tuple_slice(py::tuple tup_, int64_t b_, int64_t e_) in tuple_slice() function
855 py::detail::tuple_iterator begin() const { in begin()
858 py::detail::tuple_iterator end() const { in end()
861 size_t size() const { in size()
870 int64_t b;
871 int64_t e;
/aosp_15_r20/external/pytorch/test/jit/
H A Dtest_slice.py131 def tuple_slice(a): function