summaryrefslogtreecommitdiff
path: root/runtimes/neurun/src/graph/operation/LowerInfo.h
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2019-01-08 17:36:34 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2019-01-08 17:36:34 +0900
commitbd11b24234d7d43dfe05a81c520aa01ffad06e42 (patch)
tree57d0d4044977e4fa0e50cd9ba40b32006dff19eb /runtimes/neurun/src/graph/operation/LowerInfo.h
parent91f4ba45449f700a047a4aeea00b1a7c84e94c75 (diff)
downloadnnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.tar.gz
nnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.tar.bz2
nnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.zip
Imported Upstream version 0.3upstream/0.3
Diffstat (limited to 'runtimes/neurun/src/graph/operation/LowerInfo.h')
-rw-r--r--runtimes/neurun/src/graph/operation/LowerInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtimes/neurun/src/graph/operation/LowerInfo.h b/runtimes/neurun/src/graph/operation/LowerInfo.h
index f3fbbf178..e920b0eb9 100644
--- a/runtimes/neurun/src/graph/operation/LowerInfo.h
+++ b/runtimes/neurun/src/graph/operation/LowerInfo.h
@@ -31,11 +31,11 @@ namespace operation
class LowerInfo
{
public:
- LowerInfo(const backend::Backend &backend);
- const backend::Backend &backend() const { return _backend; }
+ LowerInfo(const backend::Backend *backend);
+ const backend::Backend *backend() const { return _backend; }
private:
- backend::Backend _backend;
+ const backend::Backend *_backend;
};
} // namespace operation