Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ gmon.out
*.H.swp
include/Definitions.H
input/equations.txt
build
4 changes: 3 additions & 1 deletion include/CoeffField.H
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@
#include <stdint.h>
#include <vector>
#include <iostream>
/* TBB must be included before SIMDe with native SSE aliases: TBB pulls in
* GCC's immintrin.h; if SIMDe defines _mm_* macros first, smmintrin.h breaks. */
#include <tbb/concurrent_vector.h>
#if PGBC_USE_SSE == 1
/* Use SIMDe for portable SIMD: SSE on x86, NEON on ARM */
#define SIMDE_ENABLE_NATIVE_ALIASES
#include <simde/x86/sse2.h>
#endif
#include <tbb/concurrent_vector.h>

/**
* Coefficents in the finite field are represented by
Expand Down
Loading