Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Fixed rename errors (#110)
Browse files Browse the repository at this point in the history
* Fixed rename errors in benchmarks

---------

Co-authored-by: Michael Schellenberger Costa <miscco@nvidia.com>
  • Loading branch information
ogiroux and miscco committed Feb 21, 2023
1 parent cb16895 commit 1f8e55e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions benchmarks/concurrency.cpp
Expand Up @@ -172,10 +172,10 @@ struct ticket_mutex {
};

struct sem_mutex {
void lock() noexcept {
_ABI void lock() noexcept {
c.acquire();
}
void unlock() noexcept {
_ABI void unlock() noexcept {
c.release();
}
sem_mutex() : c(1) { }
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/concurrency.cu
@@ -1 +1 @@
#include "benchmark.cpp"
#include "concurrency.cpp"

0 comments on commit 1f8e55e

Please sign in to comment.