File tree 2 files changed +3
-3
lines changed
libNeonDomain/include/Neon/domain/tools
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ git fetch origin refs/pull/%PR%/head:pull_%PR%
11
11
git checkout pull_%PR%
12
12
mkdir build
13
13
cd build
14
- cmake ..
14
+ cmake -G " Visual Studio 16 2019 " ..
15
15
cmake --build . --config Release -j 10
16
16
set ctest_filename = CTestNeonWindowsReport.log
17
17
ctest --no-compress-output --output-on-failure -T Test --build-config Release --output-log %ctest_filename%
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ class Partitioner1D
361
361
auto const start = mData ->mSpanLayout ->getBoundsInternal (setIdx, byDomain).first ;
362
362
for (uint64_t blockIdx = 0 ; blockIdx < mapperVec.size (); blockIdx++) {
363
363
auto const & point3d = mapperVec[blockIdx];
364
- for (int s = 0 ; s < mData ->mStencil .nPoints (); s++) {
364
+ for (int s = 0 ; s < mData ->mStencil .nNeighbours (); s++) {
365
365
366
366
auto const offset = mData ->mStencil .neighbours ()[s];
367
367
@@ -393,7 +393,7 @@ class Partitioner1D
393
393
auto const start = mData ->mSpanLayout ->getBoundsBoundary (setIdx, byDirection, byDomain).first ;
394
394
for (int64_t blockIdx = 0 ; blockIdx < int64_t (mapperVec.size ()); blockIdx++) {
395
395
auto const & point3d = mapperVec[blockIdx];
396
- for (int s = 0 ; s < mData ->mStencil .nPoints (); s++) {
396
+ for (int s = 0 ; s < mData ->mStencil .nNeighbours (); s++) {
397
397
398
398
399
399
auto const offset = mData ->mStencil .neighbours ()[s];
You can’t perform that action at this time.
0 commit comments