// Copyright (c) 2021 CINN Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "paddle/cinn/ir/collect_ir_nodes.h" #include #include "paddle/cinn/ir/ir_mutator.h" #include "paddle/cinn/ir/ir_printer.h" namespace cinn { namespace ir { namespace { struct IrNodesCollector : public IRVisitor { using teller_t = std::function; using handler_t = std::function; teller_t teller; handler_t handler; bool uniq_target_; bool find_target_{false}; IrNodesCollector(teller_t&& teller, handler_t&& handler, bool uniq_target) : teller(teller), handler(handler), uniq_target_(uniq_target) {} void Visit(const Expr* expr) override { if (!expr->defined() || find_target_) return; if (visited_.count(expr->get())) return; if (teller(expr)) { handler(expr); if (uniq_target_) { find_target_ = true; return; } } visited_.insert(expr->get()); switch (expr->node_type()) { #define __(op__) \ case ir::IrNodeTy::op__: \ Visit(expr->As()); \ break; NODETY_FORALL(__) default: LOG(FATAL) << "not supported NodeTy"; #undef __ } } #define __m(t__) \ void Visit(const t__* x) override { \ for (auto* n : x->expr_fields()) { \ if (n->defined()) { \ Visit(n); \ } \ } \ } NODETY_FORALL(__m) #undef __m std::set visited_; }; struct IrNodesWithoutTensorCollector : public IrNodesCollector { using teller_t = std::function; using handler_t = std::function; IrNodesWithoutTensorCollector(teller_t teller, handler_t handler, bool uniq_target) : IrNodesCollector(std::move(teller), std::move(handler), uniq_target) {} void Visit(const _Tensor_* expr) override { for (auto& e : expr->shape) { IrNodesCollector::Visit(&e); } } void Visit(const Expr* expr) override { IrNodesCollector::Visit(expr); } }; } // namespace std::set CollectIRNodes(Expr expr, std::function&& teller, bool uniq_target) { std::set exprs; IrNodesCollector::handler_t handler = [&](const Expr* x) { exprs.insert(*x); }; IrNodesCollector collector( std::move(teller), std::move(handler), uniq_target); collector.Visit(&expr); return exprs; } std::vector CollectIRNodesInOrder( Expr expr, std::function&& teller) { std::vector exprs; IrNodesWithoutTensorCollector::handler_t handler = [&](const Expr* x) { exprs.push_back(*x); }; IrNodesWithoutTensorCollector collector( std::move(teller), std::move(handler), false); collector.Visit(&expr); return exprs; } std::set CollectIRNodesWithoutTensor( Expr expr, std::function&& teller, bool uniq_target) { std::set exprs; IrNodesWithoutTensorCollector::handler_t handler = [&](const Expr* x) { exprs.insert(*x); }; IrNodesWithoutTensorCollector collector( std::move(teller), std::move(handler), uniq_target); collector.Visit(&expr); return exprs; } std::map CollectTensorMap( Expr x, std::function&& extra_teller) { std::map tensor_map; auto tensors = CollectIRNodes( x, [&](const Expr* x) { return x->as_tensor() && extra_teller(x); }); for (auto& e : tensors) { auto* t = e.as_tensor(); tensor_map[t->name] = e; } return tensor_map; } std::set CollectLoadTensors(Expr x, std::function&& teller) { if (!x.defined()) return std::set(); struct Mutator : public ir::IRMutator { std::function teller; std::set exprs; explicit Mutator(std::function&& teller) : teller(std::move(teller)) {} void operator()(const Expr* expr) { ir::IRMutator::Visit(expr, expr); } void Visit(const Load* op, const Expr* expr) override { if (teller(&op->tensor)) { exprs.insert(op->tensor); } } }; Mutator mutator(std::move(teller)); mutator(&x); return mutator.exprs; } std::set CollectStoreTensors(Expr x, std::function&& teller) { struct Mutator : public ir::IRMutator { std::function teller; std::set exprs; explicit Mutator(std::function&& teller) : teller(std::move(teller)) {} void operator()(const Expr* expr) { ir::IRMutator::Visit(expr, expr); } void Visit(const Store* op, const Expr* expr) override { if (teller(&op->tensor)) { exprs.insert(op->tensor); } } }; Mutator mutator(std::move(teller)); mutator(&x); return mutator.exprs; } std::set CollectReferencedTensors( Expr x, const std::function& teller) { auto handle0 = teller; auto handle1 = teller; auto ts0 = CollectLoadTensors(x, std::move(handle0)); auto ts1 = CollectLoadTensors(x, std::move(handle1)); for (auto& item : ts1) { ts0.insert(item); } return ts0; } } // namespace ir } // namespace cinn