Update to Kokkos library v2.5.00

This commit is contained in:
Stan Moore
2017-12-15 16:42:06 -07:00
parent da83feb8ca
commit a2756db66b
292 changed files with 8238 additions and 2823 deletions

View File

@ -0,0 +1,18 @@
#!/bin/bash
if test "`basename $PWD`" = "cmaketest"; then
outfile=$1
else
outfile=config/tmpstore/$1
fi
grep_arch=`grep KOKKOS_ARCH $outfile | grep $2 2>&1`
grep_devs=`grep KOKKOS_DEVICES $outfile | grep $3 2>&1`
if test -n "$grep_arch"; then
if test -n "$grep_devs"; then
echo Passed
else
echo Failed
fi
else
echo Failed
fi