#ifndef __INTERNAL_OP_HASHTABLE_LOOKUP_H__ #define __INTERNAL_OP_HASHTABLE_LOOKUP_H__ #include "internal/op/Node.h" #include namespace internal { namespace tflite { namespace op { namespace HashtableLookup { struct Param { int32_t output_index; int32_t hits_index; int32_t lookups_index; int32_t values_index; int32_t keys_index; Param() = default; Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount, const uint32_t *outputs); }; class Node final : public op::Node { public: Node(const Param ¶m) : _param(param) { // DO NOTHING } public: virtual ~Node() = default; public: const Param ¶m(void) const { return _param; } public: void accept(NodeVisitor &&) const override; private: const Param _param; }; } // namespace HashtableLookup } // namespace op } // namespace tflite } // namespace internal #endif // __INTERNAL_OP_HASHTABLE_LOOKUP_H__