/* * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __LUCI_IR_CIRCLECONST_H__ #define __LUCI_IR_CIRCLECONST_H__ #include "luci/IR/CircleNodeDecl.h" #include "luci/IR/CircleOpcode.h" #include "luci/IR/AttrFusedActFunc.h" #include "luci/IR/LuciNodeMixins.h" #include namespace luci { /** * @brief Class to build tensor data * @note This will not be exported as a specific op */ class CircleConst final : public FixedArityNode<0, CircleNodeImpl>, public loco::NodeMixin, public loco::NodeMixin { public: CircleConst() = default; public: template uint32_t size(void) const; template void size(uint32_t size); template const typename loco::DataTypeImpl
::Type &at(uint32_t n) const; template typename loco::DataTypeImpl
::Type &at(uint32_t n); template const typename loco::DataTypeImpl
::Type &scalar(void) const; template typename loco::DataTypeImpl
::Type &scalar(void); private: std::vector _data; }; } // namespace luci #endif // __LUCI_IR_CIRCLECONST_H__