forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOC]Update doc in _api_internal.py and ir_pass.py (apache#2514)
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
"""namespace of internal API""" | ||
"""Namespace of internal API | ||
The functions in this namespace are automatically exported from C++ side via PackedFunc | ||
that is registered by "TVM_REGISTER_*" macro. This way makes calling Python functions from C++ | ||
side very easily. | ||
Each string starts with "_" in the "TVM_REGISTER_*" macro is an internal API. You can find | ||
all the functions in "api_lang.cc", "api_base.cc", "api_arith.cc" and "api_ir.cc" under "src/api". | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters