| /* |
| * 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 src/ir/type.cc |
| * \brief Common type system AST nodes throughout the IR. |
| */ |
| #include <tvm/ffi/function.h> |
| #include <tvm/ffi/reflection/registry.h> |
| #include <tvm/ir/type.h> |
| namespace tvm { |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| TypeNode::RegisterReflection(); |
| PrimTypeNode::RegisterReflection(); |
| PointerTypeNode::RegisterReflection(); |
| TupleTypeNode::RegisterReflection(); |
| FuncTypeNode::RegisterReflection(); |
| TensorMapTypeNode::RegisterReflection(); |
| } |
| |
| PrimType::PrimType(runtime::DataType dtype, Span span) { |
| ffi::ObjectPtr<PrimTypeNode> n = ffi::make_object<PrimTypeNode>(); |
| n->dtype = dtype; |
| n->span = std::move(span); |
| data_ = std::move(n); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("ir.PrimType", [](runtime::DataType dtype) { return PrimType(dtype); }); |
| } |
| |
| PointerType::PointerType(Type element_type, ffi::String storage_scope) { |
| ffi::ObjectPtr<PointerTypeNode> n = ffi::make_object<PointerTypeNode>(); |
| if (storage_scope.empty()) { |
| n->storage_scope = "global"; |
| } else { |
| n->storage_scope = std::move(storage_scope); |
| } |
| n->element_type = std::move(element_type); |
| data_ = std::move(n); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("ir.PointerType", [](Type element_type, ffi::String storage_scope = "") { |
| return PointerType(element_type, storage_scope); |
| }); |
| } |
| |
| FuncType::FuncType(tvm::ffi::Array<Type> arg_types, Type ret_type, Span span) { |
| ffi::ObjectPtr<FuncTypeNode> n = ffi::make_object<FuncTypeNode>(); |
| n->arg_types = std::move(arg_types); |
| n->ret_type = std::move(ret_type); |
| n->span = std::move(span); |
| data_ = std::move(n); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("ir.FuncType", [](tvm::ffi::Array<Type> arg_types, Type ret_type) { |
| return FuncType(arg_types, ret_type); |
| }); |
| } |
| |
| TupleType::TupleType(ffi::Array<Type> fields, Span span) { |
| ffi::ObjectPtr<TupleTypeNode> n = ffi::make_object<TupleTypeNode>(); |
| n->fields = std::move(fields); |
| n->span = std::move(span); |
| data_ = std::move(n); |
| } |
| |
| TupleType TupleType::Empty() { return TupleType(ffi::Array<Type>()); } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef() |
| .def("ir.TupleType", [](ffi::Array<Type> fields) { return TupleType(fields); }) |
| .def("ir.TensorMapType", [](Span span) { return TensorMapType(span); }); |
| } |
| |
| TensorMapType::TensorMapType(Span span) { |
| ffi::ObjectPtr<TensorMapTypeNode> n = ffi::make_object<TensorMapTypeNode>(); |
| n->span = std::move(span); |
| data_ = std::move(n); |
| } |
| |
| } // namespace tvm |