summaryrefslogtreecommitdiff
path: root/include/util/profiling/profiling.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/profiling/profiling.h')
-rw-r--r--include/util/profiling/profiling.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/include/util/profiling/profiling.h b/include/util/profiling/profiling.h
deleted file mode 100644
index 3365dc8d6..000000000
--- a/include/util/profiling/profiling.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef __NNFW_UTIL_PROFILING_H__
-#define __NNFW_UTIL_PROFILING_H__
-
-#include <iostream>
-
-namespace tflite {
-namespace profiling {
-class Profiler; // forward declaration
-}
-}
-
-namespace profiling
-{
-
-class Sync
-{
-public:
- Sync() : _enabled{false}
- {
- auto env = std::getenv("PURE_ARM_COMPUTE_SYNC_ENABLE");
-
- if (env && std::atoi(env) != 0)
- {
- _enabled = true;
- }
- }
-
-public:
- bool enabled(void) const { return _enabled; }
-
-private:
- bool _enabled;
-};
-
-} // namespace profiling
-
-namespace profiling
-{
-
-class Context
-{
-public:
- Context() : _sync(), _profiler(nullptr) {}
-
-public:
- const Sync &sync(void) const { return _sync; }
- tflite::profiling::Profiler* getProfiler() { return _profiler; }
- void setProfiler(tflite::profiling::Profiler* p) { _profiler = p; }
-
-private:
- Sync _sync;
- tflite::profiling::Profiler* _profiler;
-
-public:
- static Context &get(void)
- {
- static Context ctx{};
- return ctx;
- }
-};
-
-} // namespace profiling
-#endif // __NNFW_UTIL_PROFILING_H__