| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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. |
| */ |
| |
| /*! |
| * \file tvm/relax/transform/update_param_struct_info.cc |
| * \brief Mutate IRModule to accept new parameters |
| */ |
| |
| #include <tvm/ffi/reflection/registry.h> |
| #include <tvm/relax/expr.h> |
| #include <tvm/relax/expr_functor.h> |
| #include <tvm/relax/transform.h> |
| |
| #include <optional> |
| #include <unordered_map> |
| #include <vector> |
| |
| #include "../../runtime/regex.h" |
| #include "utils.h" |
| |
| namespace tvm { |
| namespace relax { |
| |
| namespace { |
| class ParamStructInfoMutator : public ExprMutator { |
| public: |
| explicit ParamStructInfoMutator(ffi::TypedFunction<ffi::Optional<StructInfo>(Var)> sinfo_func) |
| : sinfo_func_(sinfo_func) {} |
| |
| using ExprMutator::VisitExpr_; |
| using ExprMutator::VisitVarDef_; |
| |
| Expr VisitExpr_(const FunctionNode* op) override { |
| auto func = ffi::GetRef<Function>(op); |
| |
| auto params = op->params.Map([this](Var param) { |
| if (auto new_sinfo = sinfo_func_(param)) { |
| auto new_param = WithStructInfo(param, new_sinfo.value()); |
| var_remap_[param->vid] = new_param; |
| return new_param; |
| } else { |
| return param; |
| } |
| }); |
| |
| if (!params.same_as(func->params)) { |
| func.CopyOnWrite()->params = params; |
| } |
| return ExprMutator::VisitExpr_(func.get()); |
| } |
| |
| ffi::TypedFunction<ffi::Optional<StructInfo>(Var)> sinfo_func_; |
| }; |
| } // namespace |
| |
| namespace transform { |
| Pass UpdateParamStructInfo(ffi::TypedFunction<ffi::Optional<StructInfo>(Var)> sinfo_func) { |
| auto pass_func = [=](IRModule mod, PassContext pc) { |
| ParamStructInfoMutator mutator(sinfo_func); |
| |
| std::unordered_set<GlobalVar> to_remove; |
| std::unordered_map<GlobalVar, Function> to_add; |
| |
| for (const auto& [gvar, base_func] : mod->functions) { |
| if (auto func = base_func.as<Function>()) { |
| auto updated = Downcast<Function>(mutator(func.value())); |
| if (!updated.same_as(base_func)) { |
| GlobalVar new_gvar(gvar->name_hint); |
| UpdateStructInfo(new_gvar, GetStructInfo(updated)); |
| to_add.insert({new_gvar, updated}); |
| to_remove.insert(gvar); |
| } |
| } |
| } |
| |
| if (to_remove.size() || to_add.size()) { |
| auto write_ptr = mod.CopyOnWrite(); |
| |
| for (const auto& gvar : to_remove) { |
| write_ptr->Remove(gvar); |
| } |
| for (const auto& [gvar, func] : to_add) { |
| write_ptr->Add(gvar, func); |
| } |
| } |
| |
| return mod; |
| }; |
| return tvm::transform::CreateModulePass(pass_func, 1, "UpdateParamStructInfo", {}); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("relax.transform.UpdateParamStructInfo", UpdateParamStructInfo); |
| } |
| |
| } // namespace transform |
| } // namespace relax |
| } // namespace tvm |