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

Function assertImageStep

src/library/blas/generic/solution_assert.c:171–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169}
170
171void VISIBILITY_HIDDEN
172assertImageStep(SolutionStep *wholeStep, ListHead *doneSubsteps)
173{
174 SolArea area;
175
176 area.offsetM = SIZE_MAX;
177 area.M = 0;
178 area.offsetN = SIZE_MAX;
179 area.N = 0;
180 listDoForEachPriv(doneSubsteps, accProcessed, &area);
181 assert((area.offsetM == wholeStep->args.offsetM) &&
182 (area.M == wholeStep->args.M) &&
183 (area.offsetM ==wholeStep->args.offsetM) &&
184 (area.N == wholeStep->args.N));
185}
186
187void VISIBILITY_HIDDEN
188releaseImageAssertion(ListHead *doneSubsteps)

Callers 1

executeImageStepFunction · 0.85

Calls 1

listDoForEachPrivFunction · 0.85

Tested by

no test coverage detected