tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
script_printer.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  */
23 #ifndef TVM_NODE_SCRIPT_PRINTER_H_
24 #define TVM_NODE_SCRIPT_PRINTER_H_
25 
26 #include <tvm/node/functor.h>
27 #include <tvm/node/object_path.h>
28 #include <tvm/node/reflection.h>
29 #include <tvm/runtime/data_type.h>
30 
31 #include <iostream>
32 #include <string>
33 
34 namespace tvm {
35 
36 class PrinterConfigNode : public Object {
37  public:
41  bool show_meta = false;
43  std::string ir_prefix = "I";
45  std::string tir_prefix = "T";
50  std::string module_alias = "cls";
62  bool verbose_expr = false;
64  int indent_spaces = 4;
66  bool print_line_numbers = false;
70  bool syntax_sugar = true;
72  bool show_object_address = false;
73  /* \brief Object path to be underlined */
81 
83  v->Visit("binding_names", &binding_names);
84  v->Visit("show_meta", &show_meta);
85  v->Visit("ir_prefix", &ir_prefix);
86  v->Visit("tir_prefix", &tir_prefix);
87  v->Visit("module_alias", &module_alias);
88  v->Visit("buffer_dtype", &buffer_dtype);
89  v->Visit("int_dtype", &int_dtype);
90  v->Visit("float_dtype", &float_dtype);
91  v->Visit("verbose_expr", &verbose_expr);
92  v->Visit("indent_spaces", &indent_spaces);
93  v->Visit("print_line_numbers", &print_line_numbers);
94  v->Visit("num_context_lines", &num_context_lines);
95  v->Visit("syntax_sugar", &syntax_sugar);
96  v->Visit("show_object_address", &show_object_address);
97  v->Visit("path_to_underline", &path_to_underline);
98  v->Visit("path_to_annotate", &path_to_annotate);
99  v->Visit("obj_to_underline", &obj_to_underline);
100  v->Visit("obj_to_annotate", &obj_to_annotate);
101  }
102 
103  static constexpr const char* _type_key = "node.PrinterConfig";
105 };
106 
107 class PrinterConfig : public ObjectRef {
108  public:
110 
113 };
114 
117  public:
118  /* Convert the object to TVMScript format */
119  static std::string Script(const ObjectRef& node, const Optional<PrinterConfig>& cfg);
120  // Allow registration to be printer.
121  using FType = NodeFunctor<std::string(const ObjectRef&, const PrinterConfig&)>;
122  TVM_DLL static FType& vtable();
123 };
124 
125 #define TVM_OBJECT_ENABLE_SCRIPT_PRINTER() \
126  std::string Script(const Optional<PrinterConfig>& config = NullOpt) const { \
127  return TVMScriptPrinter::Script(GetRef<ObjectRef>(this), config.value_or(PrinterConfig())); \
128  }
129 
130 } // namespace tvm
131 #endif // TVM_NODE_SCRIPT_PRINTER_H_
Visitor class to get the attributes of an AST/IR node. The content is going to be called for each fie...
Definition: reflection.h:52
A dynamically dispatched functor on the type of the first argument.
Definition: functor.h:64
Definition: script_printer.h:36
static constexpr const char * _type_key
Definition: script_printer.h:103
std::string tir_prefix
The prefix of TIR nodes.
Definition: script_printer.h:45
bool print_line_numbers
Whether to print line numbers.
Definition: script_printer.h:66
DataType int_dtype
Default data type of integer literals.
Definition: script_printer.h:54
bool verbose_expr
Whether or not to verbose print expressions.
Definition: script_printer.h:62
bool syntax_sugar
Whether to output with syntax sugar, set false for complete printing.
Definition: script_printer.h:70
Array< ObjectRef > obj_to_underline
Object to be underlined.
Definition: script_printer.h:78
bool show_object_address
Whether variable names should include the object's address.
Definition: script_printer.h:72
int indent_spaces
Number of spaces used for indentation.
Definition: script_printer.h:64
int num_context_lines
Number of context lines to print around the underlined text.
Definition: script_printer.h:68
bool show_meta
Whether or not to show metadata.
Definition: script_printer.h:41
Map< ObjectRef, String > obj_to_annotate
Object to be annotated.
Definition: script_printer.h:80
Array< String > binding_names
A stack that tracks the names of the binding hierarchy.
Definition: script_printer.h:39
DataType float_dtype
Default data type of float literals. Right now we always print out the explicit type of floating poin...
Definition: script_printer.h:60
std::string module_alias
The alias of the current module at cross-function call.
Definition: script_printer.h:50
DataType buffer_dtype
Default data type of TIR buffer.
Definition: script_printer.h:52
TVM_DECLARE_FINAL_OBJECT_INFO(PrinterConfigNode, Object)
Map< ObjectPath, String > path_to_annotate
Object path to be annotated.
Definition: script_printer.h:76
void VisitAttrs(AttrVisitor *v)
Definition: script_printer.h:82
Array< ObjectPath > path_to_underline
Definition: script_printer.h:74
std::string ir_prefix
The prefix of IR nodes.
Definition: script_printer.h:43
Definition: script_printer.h:107
TVM_DEFINE_MUTABLE_NOTNULLABLE_OBJECT_REF_METHODS(PrinterConfig, runtime::ObjectRef, PrinterConfigNode)
PrinterConfig(Map< String, ObjectRef > config_dict=Map< String, ObjectRef >())
Legacy behavior of ReprPrinter.
Definition: script_printer.h:116
static std::string Script(const ObjectRef &node, const Optional< PrinterConfig > &cfg)
static FType & vtable()
Array, container representing a contiguous sequence of ObjectRefs.
Definition: array.h:289
Runtime primitive data type.
Definition: data_type.h:42
static DataType Float(int bits, int lanes=1)
Construct an float type.
Definition: data_type.h:190
static DataType Int(int bits, int lanes=1)
Construct an int type.
Definition: data_type.h:176
static DataType Void()
Construct a Void type.
Definition: data_type.h:227
Map container of NodeRef->NodeRef in DSL graph. Map implements copy on write semantics,...
Definition: map.h:1271
Base class of all object reference.
Definition: object.h:517
base class of all object containers.
Definition: object.h:169
Optional container that to represent to a Nullable variant of T.
Definition: optional.h:51
Defines the Functor data structures.
runtime implementation for LibTorch/TorchScript.
Definition: analyzer.h:36
Reflection and serialization of compiler IR/AST nodes.