Home
last modified time | relevance | path

Searched refs:PyInterpreterVTable (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/pytorch/c10/core/impl/
H A DPyInterpreter.h121 struct C10_API PyInterpreterVTable { struct
122 virtual ~PyInterpreterVTable() = default;
221 const PyInterpreterVTable* vtable_;
223 PyInterpreter(const PyInterpreterVTable* vtable) : vtable_(vtable){}; in PyInterpreter()
225 const PyInterpreterVTable& operator*() const noexcept {
228 const PyInterpreterVTable* operator->() const noexcept {
H A DPyInterpreter.cpp7 struct NoopPyInterpreterVTable final : public PyInterpreterVTable {
/aosp_15_r20/external/pytorch/torch/csrc/
H A DPyInterpreter.cpp44 : public c10::impl::PyInterpreterVTable {