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

Method VectorVariable

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

Source from the content-addressed store, hash-verified

79}
80
81VectorVariable::VectorVariable(
82 const std::string& name,
83 const std::string& type,
84 const std::string& defaultValue)
85{
86 name_ = name;
87 type_ = type;
88 defaultValue_ = defaultValue;
89 isBuffer_ = false;
90 constant_ = false;
91
92 copyOf_ = NULL;
93
94 flags_ = 0;
95 hostPtr_ = NULL;
96
97 nElems_ = NULL;
98 inc_ = NULL;
99 off_ = NULL;
100}
101
102Variable::~Variable()
103{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected