Rename hosttrace to omnitrace (#18)

Этот коммит содержится в:
Jonathan R. Madsen
2021-11-24 04:59:59 -06:00
коммит произвёл GitHub
родитель 752424efc2
Коммит 39cf760a4e
46 изменённых файлов: 906 добавлений и 830 удалений
+3 -1
Просмотреть файл
@@ -172,14 +172,16 @@ int
main(int argc, char** argv)
{
int rank = 0;
int size = 1;
int nthreads = 2;
if(argc > 1) nthreads = atoi(argv[1]);
#if defined(USE_MPI)
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
#endif
// this is a temporary workaround in hosttrace when HIP + MPI is enabled
// this is a temporary workaround in omnitrace when HIP + MPI is enabled
int ndevice = 0;
int devid = rank;
HIP_API_CALL(hipGetDeviceCount(&ndevice));