replaced - for = so that assignment takes place
This commit is contained in:
parent
8a47b72764
commit
e570b458a6
@ -42,7 +42,7 @@ void KOKKOSStream<T>::init_arrays(T initA, T initB, T initC)
|
||||
parallel_for(array_size, KOKKOS_LAMBDA (const int index)
|
||||
{
|
||||
a[index] = initA;
|
||||
b[index] - initB;
|
||||
b[index] = initB;
|
||||
c[index] = initC;
|
||||
});
|
||||
Kokkos::fence();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user