kernel
danieldk HF staff commited on
Commit
52bc5f9
·
1 Parent(s): 3f164d2

Update for build.toml changes

Browse files
Files changed (2) hide show
  1. build.toml +2 -5
  2. torch-ext/registration.h +0 -27
build.toml CHANGED
@@ -1,16 +1,13 @@
1
  [general]
2
- version = "0.0.1"
3
 
4
  [torch]
5
- name = "rotary"
6
  src = [
7
- "torch-ext/registration.h",
8
  "torch-ext/torch_binding.cpp",
9
  ]
10
- pyroot = "torch-ext"
11
 
12
  [kernel.activation]
13
- capabilities = [ "7.0", "7.2", "7.5", "8.0", "8.6", "8.7", "8.9", "9.0" ]
14
  src = [
15
  "rotary/rotary_cuda.cu",
16
  ]
 
1
  [general]
2
+ name = "rotary"
3
 
4
  [torch]
 
5
  src = [
 
6
  "torch-ext/torch_binding.cpp",
7
  ]
 
8
 
9
  [kernel.activation]
10
+ cuda-capabilities = [ "7.0", "7.2", "7.5", "8.0", "8.6", "8.7", "8.9", "9.0" ]
11
  src = [
12
  "rotary/rotary_cuda.cu",
13
  ]
torch-ext/registration.h DELETED
@@ -1,27 +0,0 @@
1
- #pragma once
2
-
3
- #include <Python.h>
4
-
5
- #define _CONCAT(A, B) A##B
6
- #define CONCAT(A, B) _CONCAT(A, B)
7
-
8
- #define _STRINGIFY(A) #A
9
- #define STRINGIFY(A) _STRINGIFY(A)
10
-
11
- // A version of the TORCH_LIBRARY macro that expands the NAME, i.e. so NAME
12
- // could be a macro instead of a literal token.
13
- #define TORCH_LIBRARY_EXPAND(NAME, MODULE) TORCH_LIBRARY(NAME, MODULE)
14
-
15
- // A version of the TORCH_LIBRARY_IMPL macro that expands the NAME, i.e. so NAME
16
- // could be a macro instead of a literal token.
17
- #define TORCH_LIBRARY_IMPL_EXPAND(NAME, DEVICE, MODULE) \
18
- TORCH_LIBRARY_IMPL(NAME, DEVICE, MODULE)
19
-
20
- // REGISTER_EXTENSION allows the shared library to be loaded and initialized
21
- // via python's import statement.
22
- #define REGISTER_EXTENSION(NAME) \
23
- PyMODINIT_FUNC CONCAT(PyInit_, NAME)() { \
24
- static struct PyModuleDef module = {PyModuleDef_HEAD_INIT, \
25
- STRINGIFY(NAME), nullptr, 0, nullptr}; \
26
- return PyModule_Create(&module); \
27
- }