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

Method fixLD

src/library/tools/ktest/steps/symv.cpp:100–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100void
101SymvStep::fixLD()
102{
103 CLBlasKargs args;
104
105 args = kargs();
106
107 if (args.lda.matrix < args.N) {
108 args.lda.matrix = args.N;
109 }
110
111 if (args.ldb.Vector == 0) {
112 args.ldb.Vector = 1;
113 }
114 if (args.ldc.Vector == 0) {
115 args.ldc.Vector = 1;
116 }
117 args.K = args.N; //store original N
118
119 setKargs(args);
120}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected