#pragma once #include // Functions used by both encapsulation and conversion. namespace torch::jit { struct IndexingPatternFinder { public: static std::vector FetchSliceAndSelect(const Node* node); private: static bool IsSameSource(const Node* n, const Node* m); }; } // namespace torch::jit