summaryrefslogtreecommitdiff
path: root/runtimes/neurun/src/graph/operation/Permute.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/neurun/src/graph/operation/Permute.h')
-rw-r--r--runtimes/neurun/src/graph/operation/Permute.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/runtimes/neurun/src/graph/operation/Permute.h b/runtimes/neurun/src/graph/operation/Permute.h
deleted file mode 100644
index 540f869b1..000000000
--- a/runtimes/neurun/src/graph/operation/Permute.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef __NEURUN_GRAPH_OPERATION_PERMUTE_PERMUTE_H__
-#define __NEURUN_GRAPH_OPERATION_PERMUTE_PERMUTE_H__
-
-#include "graph/operation/Node.h"
-
-namespace neurun
-{
-namespace graph
-{
-namespace operation
-{
-namespace Permute
-{
-
-class Node : public graph::operation::Node
-{
-public:
- virtual void accept(NodeVisitor &&) const override;
-
-public:
- Node(const operand::Index &input, const operand::Index &output);
-
-public:
- virtual void setInputs(const operand::IndexSet &indexes) override;
- virtual void setOutputs(const operand::IndexSet &indexes) override;
-};
-
-} // namespace Permute
-} // namespace operation
-} // namespace graph
-} // namespace neurun
-
-#endif // __NEURUN_GRAPH_OPERATION_PERMUTE_PERMUTE_H__