#include #include #include "check_err.hpp" #include "config.hpp" #include "device.hpp" #include "host_tensor.hpp" #include "host_tensor_generator.hpp" #include "device_tensor.hpp" #include "binary_element_wise_operation.hpp" #include "device_binary_elementwise.hpp" using F16 = ck::half_t; using F32 = float; using ABDataType = F16; using CDataType = F16; using EltwiseComputeDataType = F32; using Add = ck::tensor_operation::binary_element_wise::Add; using DeviceElementwiseAddInstance = ck::tensor_operation::device::DeviceBinaryElementwise; template void host_elementwise4D(HostTensorC& C, const HostTensorA& A, const HostTensorB& B, const std::vector& shape, Functor functor) { using ctype = ck::remove_reference_t; for(std::size_t n = 0; n < shape[0]; ++n) for(std::size_t c = 0; c < shape[1]; ++c) for(std::size_t h = 0; h < shape[2]; ++h) for(std::size_t w = 0; w < shape[3]; ++w) { ComputeDataType a_val = static_cast(A(n, c, h, w)); ComputeDataType b_val = static_cast(B(n, c, h, w)); ComputeDataType c_val = 0; functor(c_val, a_val, b_val); C(n, c, h, w) = static_cast(c_val); } } int main() { bool do_verification = true; bool time_kernel = false; std::vector nchw = {4, 16, 32, 32}; Tensor a(nchw); Tensor b(nchw); Tensor c(nchw); a.GenerateTensorValue(GeneratorTensor_3{0.0, 1.0}); b.GenerateTensorValue(GeneratorTensor_3{0.0, 1.0}); DeviceMem a_device_buf(sizeof(ABDataType) * a.mDesc.GetElementSpace()); DeviceMem b_device_buf(sizeof(ABDataType) * b.mDesc.GetElementSpace()); DeviceMem c_device_buf(sizeof(CDataType) * c.mDesc.GetElementSpace()); a_device_buf.ToDevice(a.mData.data()); b_device_buf.ToDevice(b.mData.data()); auto broadcastAdd = DeviceElementwiseAddInstance{}; auto argument = broadcastAdd.MakeArgumentPointer( a_device_buf.GetDeviceBuffer(), b_device_buf.GetDeviceBuffer(), c_device_buf.GetDeviceBuffer(), std::vector{nchw.begin(), nchw.end()}, std::vector{a.mDesc.GetStrides().begin(), a.mDesc.GetStrides().end()}, std::vector{b.mDesc.GetStrides().begin(), b.mDesc.GetStrides().end()}, std::vector{c.mDesc.GetStrides().begin(), c.mDesc.GetStrides().end()}, Add{}); if(!broadcastAdd.IsSupportedArgument(argument.get())) { throw std::runtime_error("The runtime parameters seems not supported by the " "DeviceBinaryElementwise instance, exiting!"); }; auto broadcastAdd_invoker_ptr = broadcastAdd.MakeInvokerPointer(); float ave_time = broadcastAdd_invoker_ptr->Run(argument.get(), StreamConfig{nullptr, time_kernel}); std::cout << "Perf: " << ave_time << " ms" << std::endl; bool pass = true; if(do_verification) { c_device_buf.FromDevice(c.mData.data()); Tensor host_c(nchw); host_elementwise4D, Tensor, Tensor, EltwiseComputeDataType, Add>(host_c, a, b, nchw, Add{}); pass &= ck::utils::check_err(c.mData, host_c.mData, "Error: Incorrect results c", 1e-3, 1e-3); } return pass ? 0 : 1; }