Rename hosttrace to omnitrace (#18)

[ROCm/rocprofiler-systems commit: 39cf760a4e]
This commit is contained in:
Jonathan R. Madsen
2021-11-24 04:59:59 -06:00
committed by GitHub
parent efb6d766af
commit 9d5ebf9c3b
46 changed files with 906 additions and 830 deletions
@@ -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));