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

Function isinf

test/dot.cpp:50–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48TYPED_TEST_SUITE(DotC, TestTypesC);
49
50bool isinf(af::af_cfloat val) {
51 using std::isinf;
52 return isinf(val.real) || isinf(val.imag);
53}
54bool isinf(af::af_cdouble val) {
55 using std::isinf;
56 return isinf(val.real) || isinf(val.imag);

Callers 2

dotAllTestFunction · 0.70
TEST_PFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected