summaryrefslogtreecommitdiff
path: root/src/cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.cc')
-rw-r--r--src/cache.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cache.cc b/src/cache.cc
index 4dbdb711..a34d351f 100644
--- a/src/cache.cc
+++ b/src/cache.cc
@@ -18,7 +18,6 @@
#include "internal/cache.h"
namespace clblast {
-namespace cache {
// =================================================================================================
// Stores the compiled binary or IR in the cache
@@ -98,7 +97,7 @@ bool ProgramIsInCache(const Context &context, const Precision &precision,
// =================================================================================================
// Clears the cache of stored binaries and programs
-StatusCode ClearCache() {
+StatusCode CacheClearAll() {
binary_cache_mutex_.lock();
binary_cache_.clear();
binary_cache_mutex_.unlock();
@@ -109,5 +108,4 @@ StatusCode ClearCache() {
}
// =================================================================================================
-} // namespace cache
} // namespace clblast