58 lines
2.3 KiB
Diff
58 lines
2.3 KiB
Diff
diff --git a/src/collectives/device/all_gather.cu b/src/collectives/device/all_gather.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/all_gather.cu
|
|
rename to src/collectives/device/all_gather.cu.cc
|
|
diff --git a/src/collectives/device/all_reduce.cu b/src/collectives/device/all_reduce.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/all_reduce.cu
|
|
rename to src/collectives/device/all_reduce.cu.cc
|
|
diff --git a/src/collectives/device/broadcast.cu b/src/collectives/device/broadcast.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/broadcast.cu
|
|
rename to src/collectives/device/broadcast.cu.cc
|
|
diff --git a/src/collectives/device/functions.cu b/src/collectives/device/functions.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/functions.cu
|
|
rename to src/collectives/device/functions.cu.cc
|
|
diff --git a/src/collectives/device/onerank_reduce.cu b/src/collectives/device/onerank_reduce.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/onerank_reduce.cu
|
|
rename to src/collectives/device/onerank_reduce.cu.cc
|
|
diff --git a/src/collectives/device/reduce.cu b/src/collectives/device/reduce.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/reduce.cu
|
|
rename to src/collectives/device/reduce.cu.cc
|
|
diff --git a/src/collectives/device/reduce_scatter.cu b/src/collectives/device/reduce_scatter.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/reduce_scatter.cu
|
|
rename to src/collectives/device/reduce_scatter.cu.cc
|
|
diff --git a/src/collectives/device/sendrecv.cu b/src/collectives/device/sendrecv.cu.cc
|
|
similarity index 100%
|
|
rename from src/collectives/device/sendrecv.cu
|
|
rename to src/collectives/device/sendrecv.cu.cc
|
|
diff --git a/src/nccl.h.in b/src/nccl.h
|
|
similarity index 98%
|
|
rename from src/nccl.h.in
|
|
rename to src/nccl.h
|
|
index 985274e..7ebb1e1 100644
|
|
--- a/src/nccl.h.in
|
|
+++ b/src/nccl.h
|
|
@@ -13,12 +13,12 @@
|
|
#include <cuda_bf16.h>
|
|
#endif
|
|
|
|
-#define NCCL_MAJOR ${nccl:Major}
|
|
-#define NCCL_MINOR ${nccl:Minor}
|
|
-#define NCCL_PATCH ${nccl:Patch}
|
|
-#define NCCL_SUFFIX "${nccl:Suffix}"
|
|
+#define NCCL_MAJOR 2
|
|
+#define NCCL_MINOR 13
|
|
+#define NCCL_PATCH 4
|
|
+#define NCCL_SUFFIX ""
|
|
|
|
-#define NCCL_VERSION_CODE ${nccl:Version}
|
|
+#define NCCL_VERSION_CODE 2134
|
|
#define NCCL_VERSION(X,Y,Z) (((X) <= 2 && (Y) <= 8) ? (X) * 1000 + (Y) * 100 + (Z) : (X) * 10000 + (Y) * 100 + (Z))
|
|
|
|
#ifdef __cplusplus
|