blob: 61a2c8e1a9e3fcd5c194e93fee339a0ec68e081a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <forstio/test/suite.hpp>
#include "../c++/data.hpp"
namespace {
namespace sch {
using namespace saw::schema;
}
SAW_TEST("Data Ref Basics"){
using namespace saw;
acpp::sycl::queue sycl_q;
data<sch::Array<sch::Float64>, encode::Sycl<encode::Native>> dat{{{100u}},sycl_q};
}
}
|