https://github.com/root-project/root
Raw File
Tip revision: 49ae85f5fe419209f949b04e8253a0015b8946a0 authored by Axel Naumann on 27 November 2023, 18:27:38 UTC
[foundation] Update version file to 6.30.02.
Tip revision: 49ae85f
test-veccore.cxx
#include <cstdio>
#include <VecCore/VecCore>

int main(int, char **)
{
   printf("VecCore available backends: Scalar ");
#ifdef VECCORE_ENABLE_UMESIMD
   printf("UME::SIMD ");
#endif
#ifdef VECCORE_ENABLE_VC
   printf("Vc");
#endif
   printf("\n");
   return 0;
}
back to top