aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/ops/custom.cc')
-rw-r--r--reference_model/src/ops/custom.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/reference_model/src/ops/custom.cc b/reference_model/src/ops/custom.cc
index 5c4f29b..5fc36f3 100644
--- a/reference_model/src/ops/custom.cc
+++ b/reference_model/src/ops/custom.cc
@@ -19,8 +19,8 @@ using namespace TosaReference;
using namespace Eigen;
using namespace tosa;
-OpCustom::OpCustom(uint64_t id_)
- : GraphNode(Op_CUSTOM, id_)
+OpCustom::OpCustom(SubgraphTraverser* sgt_, uint64_t id_)
+ : GraphNode(sgt_, Op_CUSTOM, id_)
{}
OpCustom::~OpCustom()
@@ -33,7 +33,7 @@ int OpCustom::checkTensorAttributes()
int OpCustom::eval()
{
- FATAL_ERROR_NODE("not supported yet");
+ FATAL_ERROR("not supported yet");
// Evaluation is trivial for constants
return GraphNode::eval();