-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODOs.txt
37 lines (31 loc) · 1.07 KB
/
TODOs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
GUIDELINES:
- Avoid modification of nccl.h DONE
TODOs:
NCCLS functions:
- ncclGetUniqueId
- ncclCommInitRank Done temp
- Needs to actually group chosen ranks into new Comm
- ncclCommInitAll
- ncclCommDestroy Done temp
- ncclGroupStart
- ncclGroupEnd
- ncclAllReduce DONE
- map nccl reductions to mpi reductions DONE
- map nccl datatypes to mpi datatypes DONE
CUDA Functions:
- cudaMalloc DONE
- cudaFree DONE
- cudaStreamCreate DONE
- cudaStreamSynchronize DONE
- cudaMemSet DONE
- cudaGetDevice DONE
Type Conversion:
- convert NCCL datatypes to MPI datatypes DONE
- support for half float and bfloat ??
- convert NCCL Ops to MPI Ops DONE
- MPI DOES NOT SUPPORT AVERAGE
- convert NCCL errortypes to mpi error types
Asynchronousity:
- use asynchronous MPI reduce calls DONE
MISC
- Analyze Memory Leaks