@@ -18,33 +18,33 @@ using namespace o2::gpu;
1818constexpr GPUChain::krnlRunRange GPUChain::krnlRunRangeNone;
1919constexpr GPUChain::krnlEvent GPUChain::krnlEventNone;
2020
21- GPUChain::krnlExec GPUChain::GetGrid (uint32_t totalItems, uint32_t nThreads, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUCA_RECO_STEP st)
21+ GPUChain::krnlExec GPUChain::GetGrid (uint32_t totalItems, uint32_t nThreads, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUDataTypes::RecoStep st)
2222{
2323 const uint32_t nBlocks = (totalItems + nThreads - 1 ) / nThreads;
2424 return {nBlocks, nThreads, stream, d, st};
2525}
2626
27- GPUChain::krnlExec GPUChain::GetGrid (uint32_t totalItems, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUCA_RECO_STEP st)
27+ GPUChain::krnlExec GPUChain::GetGrid (uint32_t totalItems, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUDataTypes::RecoStep st)
2828{
2929 return {(uint32_t )-1 , totalItems, stream, d, st};
3030}
3131
32- GPUChain::krnlExec GPUChain::GetGridBlk (uint32_t nBlocks, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUCA_RECO_STEP st)
32+ GPUChain::krnlExec GPUChain::GetGridBlk (uint32_t nBlocks, int32_t stream, GPUReconstruction::krnlDeviceType d, GPUDataTypes::RecoStep st)
3333{
3434 return {(uint32_t )-2 , nBlocks, stream, d, st};
3535}
3636
37- GPUChain::krnlExec GPUChain::GetGridBlkStep (uint32_t nBlocks, int32_t stream, GPUCA_RECO_STEP st)
37+ GPUChain::krnlExec GPUChain::GetGridBlkStep (uint32_t nBlocks, int32_t stream, GPUDataTypes::RecoStep st)
3838{
3939 return {(uint32_t )-2 , nBlocks, stream, GPUReconstruction::krnlDeviceType::Auto, st};
4040}
4141
42- GPUChain::krnlExec GPUChain::GetGridAuto (int32_t stream, GPUReconstruction::krnlDeviceType d, GPUCA_RECO_STEP st)
42+ GPUChain::krnlExec GPUChain::GetGridAuto (int32_t stream, GPUReconstruction::krnlDeviceType d, GPUDataTypes::RecoStep st)
4343{
4444 return {(uint32_t )-3 , 0 , stream, d, st};
4545}
4646
47- GPUChain::krnlExec GPUChain::GetGridAutoStep (int32_t stream, GPUCA_RECO_STEP st)
47+ GPUChain::krnlExec GPUChain::GetGridAutoStep (int32_t stream, GPUDataTypes::RecoStep st)
4848{
4949 return {(uint32_t )-3 , 0 , stream, GPUReconstruction::krnlDeviceType::Auto, st};
5050}
0 commit comments