tvm
Loading...
Searching...
No Matches
function.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
24#ifndef TVM_IR_FUNCTION_H_
25#define TVM_IR_FUNCTION_H_
26
27#include <tvm/ffi/container/array.h>
28#include <tvm/ffi/container/map.h>
29#include <tvm/ffi/string.h>
30#include <tvm/ir/attrs.h>
31#include <tvm/ir/expr.h>
32
33#include <string>
34#include <type_traits>
35
36namespace tvm {
37
44enum class CallingConv : int {
51 kDefault = 0,
58 kCPackedFunc = 1,
66};
67
71enum class LinkageType : int {
75 kInternal = 0,
80 kExternal = 1
81};
82
88namespace attr {
96constexpr const char* kCallingConv = "calling_conv";
97
105constexpr const char* kTarget = "target";
106
126constexpr const char* kGlobalSymbol = "global_symbol";
127
136constexpr const char* kSTir = "s_tir";
137
143constexpr const char* kNumInputs = "num_inputs";
144
145} // namespace attr
146
156class BaseFuncNode : public ExprNode {
157 public:
160
180 template <typename TObjectRef>
181 ffi::Optional<TObjectRef> GetAttr(const std::string& attr_key,
182 ffi::Optional<TObjectRef> default_value = std::nullopt) const {
183 return attrs.GetAttr(attr_key, default_value);
184 }
185 // variant that uses TObjectRef to enable implicit conversion to default value.
186 template <typename TObjectRef>
187 ffi::Optional<TObjectRef> GetAttr(const std::string& attr_key, TObjectRef default_value) const {
188 return GetAttr<TObjectRef>(attr_key, ffi::Optional<TObjectRef>(default_value));
189 }
190
210 bool HasNonzeroAttr(const std::string& attr_key) const { return attrs.HasNonzeroAttr(attr_key); }
236
237 static void RegisterReflection() {
238 namespace refl = tvm::ffi::reflection;
239 refl::ObjectDef<BaseFuncNode>().def_ro("attrs", &BaseFuncNode::attrs);
240 }
241
242 static constexpr const uint32_t _type_child_slots = 2;
244};
245
254
255} // namespace tvm
256#endif // TVM_IR_FUNCTION_H_
Helpers for attribute objects.
Base node of all functions.
Definition function.h:156
static constexpr const uint32_t _type_child_slots
Definition function.h:242
bool HasNonzeroAttr(const std::string &attr_key) const
Check whether the function has an non-zero integer attr.
Definition function.h:210
LinkageType GetLinkageType() const
Get the type of the linkage.
Definition function.h:230
ffi::Optional< TObjectRef > GetAttr(const std::string &attr_key, TObjectRef default_value) const
Definition function.h:187
DictAttrs attrs
Additional attributes storing the meta-data.
Definition function.h:159
ffi::Optional< TObjectRef > GetAttr(const std::string &attr_key, ffi::Optional< TObjectRef > default_value=std::nullopt) const
Get a function attribute.
Definition function.h:181
static void RegisterReflection()
Definition function.h:237
TVM_FFI_DECLARE_OBJECT_INFO("ir.BaseFunc", BaseFuncNode, ExprNode)
Managed reference to BaseFuncNode.
Definition function.h:250
TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(BaseFunc, Expr, BaseFuncNode)
Managed reference to DictAttrsNode.
Definition attrs.h:102
ffi::Optional< TObjectRef > GetAttr(const std::string &attr_key, ffi::Optional< TObjectRef > default_value=ffi::Optional< TObjectRef >(std::nullopt)) const
Get a function attribute.
Definition attrs.h:165
bool HasNonzeroAttr(const std::string &attr_key) const
Check whether the function has an non-zero integer attr.
Definition attrs.h:200
Base type of all the expressions.
Definition base_expr.h:300
Managed reference to ExprNode.
Definition base_expr.h:335
RAII wrapper function to enter and exit a context object similar to python's with syntax.
Definition with_context.h:59
Base expr nodes in TVM.
constexpr const char * kCallingConv
Indicates the special calling convention.
Definition function.h:96
constexpr const char * kSTir
The function uses s_tir (apache-derived TIR) semantics: parser fills layout=None, ScriptComplete wrap...
Definition function.h:136
constexpr const char * kNumInputs
Number of inputs of the Primfunc.
Definition function.h:143
constexpr const char * kTarget
Compilation target of the function.
Definition function.h:105
constexpr const char * kGlobalSymbol
Global linker symbol of the function in generated code.
Definition function.h:126
An object that builds and maintains block scope and StmtSref mapping for Dependence analysis.
Definition analyzer.h:40
CallingConv
Possible Calling conventions.
Definition function.h:44
@ kDefault
Default calling convention.
@ kCPackedFunc
ffi::Function that exposes a Cffi::Function signature.
@ kDeviceKernelLaunch
Device kernel launch.
LinkageType
Supported linkage types.
Definition function.h:71
@ kExternal
External linkage.
@ kInternal
Internal linkage.