1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-11 03:46:55 +01:00

Very small merge speed up.

This commit is contained in:
Peter Boyle
2016-02-16 18:41:53 -06:00
parent 81395e85d1
commit c650bb3f3d
2 changed files with 4 additions and 7 deletions

View File

@ -103,7 +103,7 @@ PARALLEL_NESTED_LOOP2
for(int n=0;n<e1;n++){
for(int b=0;b<e2;b++){
int o=n*rhs._grid->_slice_stride[dimension];
int o = n*rhs._grid->_slice_stride[dimension];
int offset = b+n*rhs._grid->_slice_block[dimension];
cobj temp =compress(rhs._odata[so+o+b],dimension,plane,so+o+b,rhs._grid);