blob: 0be02bd9158cd7eb5671c900bdb1bd0208b61596 [file] [log] [blame]
//
// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "RefBaseWorkload.hpp"
namespace armnn
{
class RefGatherNdWorkload : public RefBaseWorkload<GatherNdQueueDescriptor>
{
public:
using RefBaseWorkload<GatherNdQueueDescriptor>::RefBaseWorkload;
void Execute() const override;
void ExecuteAsync(ExecutionData& executionData) override;
private:
void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
};
} // namespace armnn