MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / MatrixVariable

Method MatrixVariable

src/library/tools/ktest/var.cpp:59–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59MatrixVariable::MatrixVariable(
60 const std::string& name,
61 const std::string& type,
62 const std::string& defaultValue)
63{
64 name_ = name;
65 type_ = type;
66 defaultValue_ = defaultValue;
67 isBuffer_ = false;
68 constant_ = false;
69
70 copyOf_ = NULL;
71
72 flags_ = 0;
73 hostPtr_ = NULL;
74
75 rows_ = NULL;
76 columns_ = NULL;
77 ld_ = NULL;
78 off_ = NULL;
79}
80
81VectorVariable::VectorVariable(
82 const std::string& name,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected