| /* |
| * 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 env_func.cc |
| */ |
| #include <tvm/ffi/function.h> |
| #include <tvm/ffi/reflection/registry.h> |
| #include <tvm/ir/env_func.h> |
| #include <tvm/tirx/expr.h> |
| |
| namespace tvm { |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { EnvFuncNode::RegisterReflection(); } |
| |
| using ffi::Any; |
| using ffi::Function; |
| using ffi::PackedArgs; |
| |
| // Pattern A (RM): auto-default repr from reflection. |
| |
| ffi::ObjectPtr<ffi::Object> CreateEnvNode(const std::string& name) { |
| auto f = tvm::ffi::Function::GetGlobal(name); |
| TVM_FFI_ICHECK(f.has_value()) << "Cannot find global function \'" << name << '\''; |
| ffi::ObjectPtr<EnvFuncNode> n = ffi::make_object<EnvFuncNode>(); |
| n->func = *f; |
| n->name = name; |
| return n; |
| } |
| |
| EnvFunc EnvFunc::Get(const ffi::String& name) { return EnvFunc(CreateEnvNode(name)); } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef() |
| .def("ir.EnvFuncGet", EnvFunc::Get) |
| .def_packed("ir.EnvFuncCall", |
| [](ffi::PackedArgs args, ffi::Any* rv) { |
| EnvFunc env = args[0].cast<EnvFunc>(); |
| TVM_FFI_ICHECK_GE(args.size(), 1); |
| env->func.CallPacked(args.Slice(1), rv); |
| }) |
| .def("ir.EnvFuncGetFunction", [](const EnvFunc& n) { return n->func; }); |
| // override EnvFuncNode to use name as the repr |
| refl::TypeAttrDef<EnvFuncNode>() |
| .def("__data_to_json__", |
| [](const EnvFuncNode* node) { |
| // simply save as the string |
| return node->name; |
| }) |
| .def("__data_from_json__", EnvFunc::Get); |
| } |
| } // namespace tvm |