MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / type_params

Class type_params

test/arrayio.cpp:29–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27using std::vector;
28
29struct type_params {
30 string name;
31 af_dtype type;
32 double real;
33 double imag;
34 type_params(string n, af_dtype t, double r, double i = 0.)
35 : name(n), type(t), real(r), imag(i) {}
36};
37
38class ArrayIOType : public ::testing::TestWithParam<type_params> {};
39

Callers 1

arrayio.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected