aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/graph_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/graph_node.h')
-rw-r--r--reference_model/src/graph_node.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/reference_model/src/graph_node.h b/reference_model/src/graph_node.h
index 14a8acc..787e89d 100644
--- a/reference_model/src/graph_node.h
+++ b/reference_model/src/graph_node.h
@@ -17,7 +17,6 @@
#define GRAPH_NODE_H
#include "attribute.h"
-#include "quant_info.h"
#include "subgraph_traverser.h"
#include "tensor.h"
#include "tosa_generated.h"
@@ -126,17 +125,6 @@
FATAL_ERROR("Can't initialize Tosa" #ATTRIBUTE_NAME "Attribute"); \
}
-#define INIT_QINFO(QINFO_NAME) \
- if (auto p = dynamic_cast<Tosa##QINFO_NAME##QuantInfo*>(qinfo_)) \
- { \
- qinfo = new Tosa##QINFO_NAME##QuantInfo(p); \
- ASSERT_MEM(qinfo); \
- } \
- else \
- { \
- qinfo = nullptr; \
- }
-
namespace TosaReference
{