"docs/vscode:/vscode.git/clone" did not exist on "796da2174b6d71f072e65cc5ba3a4290e7163a3e"
rt_mod_hip.cc 3.29 KB
Newer Older
1
2
3
4
5
6
7
8
#if defined(__linux__)
#include <sys/stat.h>
#endif

#include <hip/hip_runtime.h>
#include <hip/hiprtc.h>

#include "codegen_hip.h"
9
#include "runtime/rocm/rocm_module.h"
10
11
12
13

namespace tvm {
namespace codegen {

14
15
static std::unordered_map<std::string, runtime::FunctionInfo>
ExtractFuncInfo(const IRModule &mod) {
16
17
18
  std::unordered_map<std::string, runtime::FunctionInfo> fmap;

  for (auto kv : mod->functions) {
19
20
    ICHECK(kv.second->IsInstance<tir::PrimFuncNode>())
        << "Can only lower IR Module with PrimFuncs";
21
22
23
24
25
26
27
28
29
30
31
32
33
34
    auto f = Downcast<tir::PrimFunc>(kv.second);

    runtime::FunctionInfo info;
    for (size_t i = 0; i < f->params.size(); ++i) {
      if (f->params[i]->dtype.is_handle()) {
        auto ptr = f->params[i]->type_annotation.as<PointerTypeNode>();
        if (ptr && ptr->storage_scope == "grid_constant") {
          info.arg_types.push_back(DataType(kTVMGridConstant, 64, 1));
          continue;
        }
      }
      info.arg_types.push_back(f->params[i].dtype());
    }
    if (auto opt = f->GetAttr<Array<String>>(tir::attr::kKernelLaunchParams)) {
35
      for (const auto &tag : opt.value()) {
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
        info.launch_param_tags.push_back(tag);
      }
    }
    auto global_symbol = f->GetAttr<String>(tvm::attr::kGlobalSymbol);
    fmap[static_cast<std::string>(global_symbol.value())] = info;
  }
  return fmap;
}

runtime::Module BuildTileLangHIP(IRModule mod, Target target) {
  using tvm::runtime::Registry;
  bool output_ssa = false;
  CodeGenTileLangHIP cg;
  cg.Init(output_ssa);

  for (auto kv : mod->functions) {
52
53
    ICHECK(kv.second->IsInstance<PrimFuncNode>())
        << "CodeGenTileLangHIP: Can only take PrimFunc";
54
55
56
57
58
59
60
    auto f = Downcast<PrimFunc>(kv.second);
    auto calling_conv = f->GetAttr<Integer>(tvm::attr::kCallingConv);
    ICHECK(calling_conv == CallingConv::kDeviceKernelLaunch);
    cg.AddFunction(f);
  }

  std::string code = cg.Finish();
61
  if (const auto *f = Registry::Get("tilelang_callback_hip_postproc")) {
62
63
64
65
    code = (*f)(code, target).operator std::string();
  }
  std::string fmt = "ptx";
  std::string ptx;
66
  if (const auto *f = Registry::Get("tilelang_callback_hip_compile")) {
67
    ptx = (*f)(code, target).operator std::string();
68
69
    if (ptx[0] != '/')
      fmt = "hsaco";
70
  } else {
71
    ICHECK(false) << "tilelang_callback_hip_compile is not set";
72
73
74
75
  }
  return ROCMModuleCreate(ptx, fmt, ExtractFuncInfo(mod), code, std::string());
}

76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
String BuildTileLangHIPWithoutCompile(IRModule mod, Target target) {
  using tvm::runtime::Registry;
  bool output_ssa = false;
  CodeGenTileLangHIP cg;
  cg.Init(output_ssa);

  for (auto kv : mod->functions) {
    ICHECK(kv.second->IsInstance<PrimFuncNode>())
        << "CodeGenTileLangHIP: Can only take PrimFunc";
    auto f = Downcast<PrimFunc>(kv.second);
    auto calling_conv = f->GetAttr<Integer>(tvm::attr::kCallingConv);
    ICHECK(calling_conv == CallingConv::kDeviceKernelLaunch);
    cg.AddFunction(f);
  }

  std::string code = cg.Finish();
  if (const auto *f = Registry::Get("tilelang_callback_hip_postproc")) {
    code = (*f)(code, target).operator std::string();
  }
  return String(code);
}
97
98
TVM_REGISTER_GLOBAL("target.build.tilelang_hip")
    .set_body_typed(BuildTileLangHIP);
99
100
TVM_REGISTER_GLOBAL("target.build.tilelang_hip_without_compile")
    .set_body_typed(BuildTileLangHIPWithoutCompile);
101

102
103
} // namespace codegen
} // namespace tvm