setup the skeleton

Signed-off-by: Jinjie Liu <jjliu@baai.ac.cn>
This commit is contained in:
2026-01-28 00:54:18 +08:00
commit db4f3a0c68
11 changed files with 176 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <tvm/ffi/tvm_ffi.h>
void hello() { std::cout << "Hello, world!\n"; }
TVM_FFI_STATIC_INIT_BLOCK() {
namespace refl = tvm::ffi::reflection;
refl::GlobalDef().def("triton_tvm_ffi.utils.hello", hello);
}