You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appveyor.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ environment:
49
49
matrix:
50
50
- ALPAKA_DEBUG: 2
51
51
OMP_NUM_THREADS: 4
52
-
ALPAKA_BOOST_BRANCH: boost-1.65.1
52
+
ALPAKA_BOOST_BRANCH: boost-1.66.0
53
53
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
54
54
- OMP_NUM_THREADS: 4
55
55
ALPAKA_BOOST_BRANCH: boost-1.64.0
@@ -141,7 +141,7 @@ before_build:
141
141
- cmd: if not "%ALPAKA_ACC_CPU_B_SEQ_T_FIBERS_ENABLE%"=="OFF" set ALPAKA_BOOST_B2=%ALPAKA_BOOST_B2% --with-fiber --with-context --with-thread --with-system --with-atomic --with-chrono --with-date_time
142
142
143
143
- cmd: if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" set ALPAKA_BOOST_TOOLSET=msvc-14.1
Copy file name to clipboardExpand all lines: include/alpaka/acc/AccCpuThreads.hpp
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,11 +44,12 @@
44
44
#include<alpaka/size/Traits.hpp>
45
45
46
46
// Implementation details.
47
+
#include<alpaka/core/BoostPredef.hpp>
48
+
#include<alpaka/core/ClipCast.hpp>
49
+
#include<alpaka/core/Unused.hpp>
47
50
#include<alpaka/dev/DevCpu.hpp>
48
51
49
52
#include<boost/core/ignore_unused.hpp>
50
-
#include<boost/predef.h>
51
-
52
53
#include<memory>
53
54
#include<thread>
54
55
#include<typeinfo>
@@ -183,7 +184,7 @@ namespace alpaka
183
184
#else
184
185
// \TODO: Magic number. What is the maximum? Just set a reasonable value? There is a implementation defined maximum where the creation of a new thread crashes.
185
186
// std::thread::hardware_concurrency can return 0, so 1 is the default case?
0 commit comments