Skip to content

Commit

Permalink
Run clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Third Party committed Dec 13, 2022
1 parent 94dc3f5 commit 97902ee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/alpaka/vectoradd/vectoradd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@ try
double acc = 0;
for(std::size_t s = 0; s < steps; ++s)
{
alpaka::exec<Acc>(queue, workdiv, ComputeKernel<elements>{}, llama::shallowCopy(devA), llama::shallowCopy(devB));
alpaka::exec<Acc>(
queue,
workdiv,
ComputeKernel<elements>{},
llama::shallowCopy(devA),
llama::shallowCopy(devB));
acc += chrono.printAndReset("Compute kernel");
}
plotFile << "\"" << mappingname << "\"\t" << acc / steps << '\n';
Expand Down

0 comments on commit 97902ee

Please sign in to comment.