blob: acd1a1ea8f1d413964678c503f1036bc12655bc3 [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "NeonConvertFp32ToBf16Workload.hpp"
#include <BFloat16.hpp>
#include <Profiling.hpp>
#include <armnnUtils/FloatingPointConverter.hpp>
#include <backendsCommon/WorkloadUtils.hpp>
namespace armnn
{
NeonConvertFp32ToBf16Workload::NeonConvertFp32ToBf16Workload(const ConvertFp32ToBf16QueueDescriptor& descriptor,
const WorkloadInfo& info)
: Float32ToBFloat16Workload<ConvertFp32ToBf16QueueDescriptor>(descriptor, info)
{
this->m_Data.ValidateInputsOutputs("NeonConvertFp32ToBf16Workload", 1, 1);
GatherTensorHandlePairs(descriptor, m_TensorHandlePairs);
}
void NeonConvertFp32ToBf16Workload::Execute() const
{
ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonConvertFp32ToBf16Workload_Execute", this->GetGuid());
auto convertFunc = [](uint8_t* dst, const uint8_t* src, size_t size)
{
auto input = reinterpret_cast<const float*>(src);
auto output = reinterpret_cast<BFloat16*>(dst);
size_t numElements = size/2; // 2 bytes per bf16
armnnUtils::FloatingPointConverter::ConvertFloat32ToBFloat16(input, numElements, output);
};
for (const auto& pair : m_TensorHandlePairs)
{
CopyTensorContentsGeneric(pair.first, pair.second, convertFunc);
}
}
void NeonConvertFp32ToBf16Workload::ReplaceInputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot)
{
ITensorHandle* backupHandle = this->m_Data.m_Inputs[slot];
this->m_Data.m_Inputs[slot] = tensorHandle;
try
{
Reconfigure();
}
catch(armnn::UnimplementedException& e)
{
// Cannot reconfigure, revert the slot back and throw the exception.
this->m_Data.m_Inputs[slot] = backupHandle;
throw e;
}
}
// Replace output tensor handle with the given TensorHandle
void NeonConvertFp32ToBf16Workload::ReplaceOutputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot)
{
ITensorHandle* backupHandle = this->m_Data.m_Inputs[slot];
this->m_Data.m_Inputs[slot] = tensorHandle;
try
{
Reconfigure();
}
catch(armnn::UnimplementedException& e)
{
// Cannot reconfigure, revert the slot back and throw the exception.
this->m_Data.m_Inputs[slot] = backupHandle;
throw e;
}
}
void NeonConvertFp32ToBf16Workload::Reconfigure()
{
throw armnn::UnimplementedException("Reconfigure not implemented for this workload");
}
} //namespace armnn