drbh
commited on
Commit
·
0709eaa
1
Parent(s):
e612007
fix: adjust binding name
Browse files
torch-ext/torch_binding.cpp
CHANGED
@@ -15,7 +15,7 @@ TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) {
|
|
15 |
"float beta1, "
|
16 |
"float beta2, "
|
17 |
"float weight_decay) -> ()");
|
18 |
-
ops.impl("
|
19 |
}
|
20 |
|
21 |
REGISTER_EXTENSION(TORCH_EXTENSION_NAME)
|
|
|
15 |
"float beta1, "
|
16 |
"float beta2, "
|
17 |
"float weight_decay) -> ()");
|
18 |
+
ops.impl("adam_atan2_cuda_impl_", torch::kCUDA, &adam_atan2::adam_atan2_cuda_impl_);
|
19 |
}
|
20 |
|
21 |
REGISTER_EXTENSION(TORCH_EXTENSION_NAME)
|