Disable Colltrace for --fast option (#778)
* Disable Colltrace for --fast option * Limit nprocs for CI
This commit is contained in:
+5
-2
@@ -224,7 +224,10 @@ static float ncclTopoXGMISpeed(int gcn) {
|
||||
return gcn == 910 ? MI200_XGMI_WIDTH : VEGA_XGMI_WIDTH;
|
||||
}
|
||||
|
||||
#define ncclGetKernelIndex(p_comm) \
|
||||
((p_comm)->collTraceThread ? 1 : 0)
|
||||
#if ENABLE_COLLTRACE
|
||||
#define ncclGetKernelIndex(p_comm) ((p_comm)->collTraceThread ? 1 : 0)
|
||||
#else
|
||||
#define ncclGetKernelIndex(p_comm) (0)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user