aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/RuntimeContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/RuntimeContext.h')
-rw-r--r--arm_compute/runtime/RuntimeContext.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/arm_compute/runtime/RuntimeContext.h b/arm_compute/runtime/RuntimeContext.h
index 31e2d6939a..d64e609196 100644
--- a/arm_compute/runtime/RuntimeContext.h
+++ b/arm_compute/runtime/RuntimeContext.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 Arm Limited.
+ * Copyright (c) 2019, 2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -24,7 +24,6 @@
#ifndef ARM_COMPUTE_RUNTIME_CONTEXT_H
#define ARM_COMPUTE_RUNTIME_CONTEXT_H
-#include "arm_compute/runtime/DeviceProperties.h"
#include "arm_compute/runtime/IRuntimeContext.h"
#include <memory>
@@ -51,14 +50,12 @@ public:
void set_scheduler(IScheduler *scheduler);
// Inherited overridden methods
- IScheduler *scheduler() override;
- IAssetManager *asset_manager() override;
- const DeviceProperties &properties() override;
+ IScheduler *scheduler() override;
+ IAssetManager *asset_manager() override;
private:
- std::unique_ptr<IScheduler> _owned_scheduler{ nullptr };
- IScheduler *_scheduler{ nullptr };
- DeviceProperties _device_props{};
+ std::unique_ptr<IScheduler> _owned_scheduler{nullptr};
+ IScheduler *_scheduler{nullptr};
};
} // namespace arm_compute
#endif /*ARM_COMPUTE_RUNTIME_CONTEXT_H */