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

Method addMatrix

src/library/tools/ktest/step.cpp:382–395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380}
381
382MatrixVariable*
383Step::addMatrix(
384 const std::string& name,
385 const std::string& type,
386 Variable *rows,
387 Variable *columns,
388 Variable *ld,
389 Variable *off)
390{
391 MatrixVariable *var = new MatrixVariable(name, type, "NULL");
392 var->setMatrixSize(rows, columns, ld, off);
393 arrays_.push_back(var);
394 return var;
395}
396
397VectorVariable*
398Step::addVector(

Callers

nothing calls this directly

Calls 1

setMatrixSizeMethod · 0.80

Tested by

no test coverage detected