Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeCache.h')
-rw-r--r--src/CodeCache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CodeCache.h b/src/CodeCache.h
index 3c8e7a6..b8ee15c 100644
--- a/src/CodeCache.h
+++ b/src/CodeCache.h
@@ -30,6 +30,7 @@ class CodeCache {
if (it != values_.end()) {
return it->second;
} else {
+ //std::cerr << "create" << std::endl;
auto fn = generatorFunction();
values_[key] = fn;
return fn;