blob: cbc574272c019b80e17e854e31efcc483359f719 [file] [log] [blame]
Eric Kunzee5e26762020-10-13 16:11:07 -07001
2// Copyright (c) 2020, ARM Limited.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#include "custom.h"
17
18using namespace TosaReference;
19using namespace Eigen;
20using namespace tosa;
21
Kevin Chengacb550f2021-06-29 15:32:19 -070022OpCustom::OpCustom(SubgraphTraverser* sgt_, uint64_t id_)
23 : GraphNode(sgt_, Op_CUSTOM, id_)
Eric Kunzee5e26762020-10-13 16:11:07 -070024{}
25
26OpCustom::~OpCustom()
27{}
28
29int OpCustom::checkTensorAttributes()
30{
31 return 0;
32}
33
34int OpCustom::eval()
35{
Kevin Cheng903763c2021-09-28 16:14:52 -070036 ERROR_IF(true, "not supported yet");
Eric Kunzee5e26762020-10-13 16:11:07 -070037
38 // Evaluation is trivial for constants
39 return GraphNode::eval();
40}