1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-08-27 08:27:09 +01:00

GPU clean up, remove parallel_for. Split into accelerator_loop, thread_loop

cases, and collides with parallel_for in thrust
This commit is contained in:
Peter Boyle
2019-01-01 15:06:46 +00:00
parent 9d866d062a
commit 8c91e82ee8
2 changed files with 0 additions and 29 deletions

View File

@@ -117,7 +117,6 @@ auto innerProduct (const iMatrix<l,N>& lhs,const iMatrix<r,N>& rhs) -> iScalar<d
{
typedef decltype(innerProduct(lhs._internal[0][0],rhs._internal[0][0])) ret_t;
iScalar<ret_t> ret;
iScalar<ret_t> tmp;
ret=Zero();
for(int c1=0;c1<N;c1++){
for(int c2=0;c2<N;c2++){