ArmNN
 25.11
Loading...
Searching...
No Matches
NeonFillWorkload.cpp
Go to the documentation of this file.
1//
2// Copyright © 2020-2023 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
7
10#include <arm_compute/core/Types.h>
11#include <arm_compute/runtime/NEON/functions/NEFill.h>
12
13#include "NeonWorkloadUtils.hpp"
14
15namespace armnn
16{
17using namespace armcomputetensorutils;
18
21{
22 // Report Profiling Details
23 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonFillWorkload_Construct",
24 descriptor.m_Parameters,
25 info,
26 this->GetGuid());
27
28 m_Data.ValidateInputsOutputs("NeonFillWorkload", 1, 1);
29
30 arm_compute::ITensor& output = static_cast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
31 arm_compute::PixelValue pixelValue = GetPixelValue(output.info(), descriptor.m_Parameters.m_Value);
32
33 auto layer = std::make_unique<arm_compute::NEFill>();
34 layer->configure(&output, pixelValue);
35 m_Layer.reset(layer.release());
36}
37
39{
40 ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID("NeonFillWorkload_Execute");
41 m_Layer->run();
42}
43
44} // namespace armnn
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
NeonBaseWorkload(const FillQueueDescriptor &descriptor, const WorkloadInfo &info)
void Execute() const override
NeonFillWorkload(const FillQueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.