aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph2/frontend/Stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph2/frontend/Stream.h')
-rw-r--r--arm_compute/graph2/frontend/Stream.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/arm_compute/graph2/frontend/Stream.h b/arm_compute/graph2/frontend/Stream.h
index 6100975958..bfefe12225 100644
--- a/arm_compute/graph2/frontend/Stream.h
+++ b/arm_compute/graph2/frontend/Stream.h
@@ -61,14 +61,10 @@ public:
Stream &operator=(Stream &&) = default;
/** Finalizes the stream for an execution target
*
- * @note enable_tuning only works if the target is OpenCL.
- * @note tuning increases the execution time of first run of the graph
- *
- * @param[in] target Execution target
- * @param[in] enable_tuning (Optional) Enables the tuning interface. Defaults to false
- * @param[in] enable_memory_management (Optional) Enables the memory management interface. Defaults to false
+ * @param[in] target Execution target
+ * @param[in] config (Optional) Graph configuration to use
*/
- void finalize(Target target, bool enable_tuning = false, bool enable_memory_management = false);
+ void finalize(Target target, const GraphConfig &config);
/** Executes the stream **/
void run();