Skip to content

Commit 6e36f2b

Browse files
committed
GPU: Does not work on the GPU anyway, and was breaking the Standalone benchmark without ROOT
1 parent e65300a commit 6e36f2b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

DataFormats/Reconstruction/src/TrackParametrizationWithError.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@
3030

3131
#ifndef GPUCA_GPUCODE_DEVICE
3232
#include <iostream>
33+
#ifndef GPUCA_STANDALONE
3334
#include "Math/SMatrix.h"
3435
#endif
36+
#endif
3537

3638
#ifndef GPUCA_ALIGPUCODE
3739
#include <fmt/printf.h>
@@ -688,7 +690,7 @@ GPUd() typename TrackParametrizationWithError<value_T>::value_t TrackParametriza
688690
return (d * (szz * d - sdz * z) + z * (sdd * z - d * sdz)) / det;
689691
}
690692

691-
#ifndef GPUCA_GPUCODE // Disable function relying on ROOT SMatrix on GPU
693+
#if !defined(GPUCA_GPUCODE) && !defined(GPUCA_STANDALONE) // Disable function relying on ROOT SMatrix on GPU
692694

693695
//______________________________________________
694696
template <typename value_T>

0 commit comments

Comments
 (0)