Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/csrc/jit/ir/
H A Dir.cpp527 struct LintScope { in lint() struct
529 LintScope(std::unique_ptr<LintScope> parent) : parent(std::move(parent)) {} in lint() argument
530 bool contains(const Value* v) { in lint()
533 bool contains(const Node* n) { in lint()
536 void insert(const Value* v) { in lint()
540 void insert(const Node* n) { in lint()
545 std::unique_ptr<LintScope> parent; in lint()
548 std::unordered_set<const Value*> values; in lint()
549 std::unordered_set<const Node*> nodes; in lint()