Skip to content

Commit

Permalink
additional annotation for caliper
Browse files Browse the repository at this point in the history
  • Loading branch information
artv3 committed Dec 26, 2024
1 parent aa28a3c commit 03b43e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/plugin/raja-caliper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ int main(int RAJA_UNUSED_ARG(argc), char **RAJA_UNUSED_ARG(argv[]))
timer.start();
RAJA::forall<RAJA::seq_exec>
(RAJA::RangeSegment(0, N),
RAJA::expt::KernelName("RAJA Seq daxpy Kernel"),
RAJA::expt::KernelName("CALI: RAJA Seq daxpy Kernel"),
[=] (int i) {
a[i] += b[i] * c;
});
Expand All @@ -141,7 +141,7 @@ int main(int RAJA_UNUSED_ARG(argc), char **RAJA_UNUSED_ARG(argv[]))
timer.start();
RAJA::forall<RAJA::simd_exec>
(RAJA::RangeSegment(0, N),
RAJA::expt::KernelName("RAJA SIMD daxpy Kernel"),
RAJA::expt::KernelName("CALI: RAJA SIMD daxpy Kernel"),
[=] (int i) {
a[i] += b[i] * c;
});
Expand Down

0 comments on commit 03b43e6

Please sign in to comment.