Skip to content

Commit

Permalink
Fix minor typing error.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkestene committed Aug 22, 2024
1 parent 36b3074 commit a837ac0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static void run(benchmark::State& state) {
using MemSpace = typename ExecSpace::memory_space;
using Device = Kokkos::Device<ExecSpace, MemSpace>;

std::cout << "Running BLAS Level 1 DOT perfomrance experiment (" << ExecSpace::name() << ")\n";
std::cout << "Running BLAS Level 1 DOT performance experiment (" << ExecSpace::name() << ")\n";

std::cout << "Each test input vector has a length of " << m << std::endl;

Expand Down
2 changes: 1 addition & 1 deletion perf_test/blas/blas1/KokkosBlas_dot_perf_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void run(int m, int repeat) {
using MemSpace = typename ExecSpace::memory_space;
using Device = Kokkos::Device<ExecSpace, MemSpace>;

std::cout << "Running BLAS Level 1 DOT perfomrance experiment (" << ExecSpace::name() << ")\n";
std::cout << "Running BLAS Level 1 DOT performance experiment (" << ExecSpace::name() << ")\n";

std::cout << "Each test input vector has a length of " << m << std::endl;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static void run(benchmark::State& state) {
using MemSpace = typename ExecSpace::memory_space;
using Device = Kokkos::Device<ExecSpace, MemSpace>;

std::cout << "Running BLAS Level 1 DOT perfomrance experiment (" << ExecSpace::name() << ")\n";
std::cout << "Running BLAS Level 1 DOT performance experiment (" << ExecSpace::name() << ")\n";

std::cout << "Each test input vector has a length of " << m << std::endl;

Expand Down

0 comments on commit a837ac0

Please sign in to comment.