Skip to content
Snippets Groups Projects
Commit 60f26f90 authored by Administrator's avatar Administrator Committed by Sergey Gorbunov
Browse files

Use pseudo vectors when creating the ROOT dictionary

    The creation of the ROOT dictionary fails on arm64 if the SIMD vectors are
    used.
parent 7bfdcd77
No related branches found
No related tags found
1 merge request!910Use pseudo vectors when creating the ROOT dictionary on arm64
......@@ -13,12 +13,11 @@
#include <assert.h>
//#if defined(HAVE_SSE) || SSE_FOUND
#if defined(__CINT__) || defined(__CLING__)
#include "vectors/PSEUDO_F32vec4.h"
#else
#include "vectors/P4_F32vec4.h"
//#else
//#include "vectors/PSEUDO_F32vec4.h"
//#error NoSseFound
//#endif // HAVE_SSE
#endif
template<typename T>
......
......@@ -18,7 +18,11 @@
#include <cmath>
#if defined(__CINT__) || defined(__CLING__)
#include "vectors/PSEUDO_F32vec4.h"
#else
#include "vectors/P4_F32vec4.h"
#endif
/// Namespace L1NaN defines functions to set variables to NaN and check wether they are NaN or not
///
......
......@@ -21,7 +21,11 @@
#include <cmath>
#if defined(__CINT__) || defined(__CLING__)
#include "vectors/PSEUDO_F32vec4.h"
#else
#include "vectors/P4_F32vec4.h"
#endif
/// Class contains some utility functions for L1Algo
struct L1Utils {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment