Skip to content

Commit e9a1c5d

Browse files
authored
Fix typo, Update muladd.cpp (#98)
Should be CPU.
1 parent 725e7a4 commit e9a1c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension_cpp/csrc/muladd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ TORCH_LIBRARY(extension_cpp, m) {
9090
m.def("myadd_out(Tensor a, Tensor b, Tensor(a!) out) -> ()");
9191
}
9292

93-
// Registers CUDA implementations for mymuladd, mymul, myadd_out
93+
// Registers CPU implementations for mymuladd, mymul, myadd_out
9494
TORCH_LIBRARY_IMPL(extension_cpp, CPU, m) {
9595
m.impl("mymuladd", &mymuladd_cpu);
9696
m.impl("mymul", &mymul_cpu);

0 commit comments

Comments
 (0)