mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-05 22:22:27 +00:00
* added working example for 5D input using 1D kernel * example with 5D input tensor and 2d kernel - not working: issues with arguments * added updated version of 3d device op - changed descriptors/dims * added example file to check kernel * fixed descriptor and isSupportedArgument stride problem * added and modified kernel for 3d - updated tids/loop * adding some more 5d example files * fixed some issues * changes made for testing * working version: fixed error in stride for A, still a bit inefficient * cleaned up formatting/comments * updating formatting * more formatting fixes * fixing cmake, adding back gpu targets in cmake script * adding client example * added instances for client example * fixed errors in client example * implemented client ex with device_elementwise.hpp and device_elementwise_3d_impl.hpp * removed extra files * minor formatting and naming fixes * adding test files and profiler * fixing minor error * minor fix * removed unneccesary comments, renamed files * updated instance list for client example, added different layout example * removing instances * fixed error in instance generation * remove comments * update profiler and client example tensor layouts * fixed errors in test/profiler * updated vector dim access to enable vector load * updated test/profiler files * updated example with 1d kernel * updating profiler * renamed files --------- Co-authored-by: Jing Zhang <jizha@amd.com>
116 lines
4.7 KiB
C++
116 lines
4.7 KiB
C++
#include <iostream>
|
|
#include <cstdlib>
|
|
|
|
#include "ck/ck.hpp"
|
|
#include "ck/tensor_operation/gpu/element/binary_element_wise_operation.hpp"
|
|
#include "ck/tensor_operation/gpu/device/impl/device_elementwise_impl.hpp"
|
|
|
|
#include "ck/library/utility/algorithm.hpp"
|
|
#include "ck/library/utility/check_err.hpp"
|
|
#include "ck/library/utility/device_memory.hpp"
|
|
#include "ck/library/utility/host_tensor.hpp"
|
|
#include "ck/library/utility/host_tensor_generator.hpp"
|
|
|
|
using F16 = ck::half_t;
|
|
using F32 = float;
|
|
|
|
using ADataType = F16;
|
|
using BDataType = F16;
|
|
|
|
using PassThrough = ck::tensor_operation::element_wise::PassThrough;
|
|
using DeviceElementwisePermuteInstance =
|
|
ck::tensor_operation::device::DeviceElementwiseImpl<ck::Tuple<ADataType>, // InDataTypeTuple
|
|
ck::Tuple<BDataType>, // OutDataTypeTuple
|
|
PassThrough, // Elementwise op
|
|
4, // NumDim
|
|
8, // MPerThread
|
|
ck::Sequence<8>, // InScalarPerVectorSeq
|
|
ck::Sequence<1>>; // OutScalarPerVectorSeq
|
|
|
|
template <typename HostTensorA, typename HostTensorB, typename Functor>
|
|
void host_elementwise4D(HostTensorB& B_nhwc, const HostTensorA& A_nchw, Functor functor)
|
|
{
|
|
for(std::size_t n = 0; n < A_nchw.mDesc.GetLengths()[0]; ++n)
|
|
for(std::size_t c = 0; c < A_nchw.mDesc.GetLengths()[1]; ++c)
|
|
for(std::size_t h = 0; h < A_nchw.mDesc.GetLengths()[2]; ++h)
|
|
for(std::size_t w = 0; w < A_nchw.mDesc.GetLengths()[3]; ++w)
|
|
{
|
|
auto a_val = A_nchw(n, c, h, w);
|
|
functor(B_nhwc(n, h, w, c), a_val);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
bool do_verification = true;
|
|
bool time_kernel = true;
|
|
|
|
std::vector<std::size_t> nchw = {16, 128, 32, 64};
|
|
std::vector<std::size_t> nhwc = {16, 32, 64, 128};
|
|
Tensor<ADataType> a(nchw);
|
|
Tensor<BDataType> b(nhwc);
|
|
|
|
a.GenerateTensorValue(GeneratorTensor_3<ADataType>{0.0, 1.0});
|
|
|
|
DeviceMem a_device_buf(sizeof(ADataType) * a.mDesc.GetElementSpaceSize());
|
|
DeviceMem b_device_buf(sizeof(BDataType) * b.mDesc.GetElementSpaceSize());
|
|
|
|
a_device_buf.ToDevice(a.mData.data());
|
|
|
|
std::array<const void*, 1> input = {a_device_buf.GetDeviceBuffer()};
|
|
std::array<void*, 1> output = {b_device_buf.GetDeviceBuffer()};
|
|
|
|
std::array<ck::index_t, 4> ab_lengths;
|
|
std::array<ck::index_t, 4> a_strides = {static_cast<int>(nchw[1] * nchw[2] * nchw[3]),
|
|
static_cast<int>(nchw[2] * nchw[3]),
|
|
static_cast<int>(nchw[3]),
|
|
1};
|
|
std::array<ck::index_t, 4> b_strides = {static_cast<int>(nhwc[1] * nhwc[2] * nhwc[3]),
|
|
1,
|
|
static_cast<int>(nhwc[2] * nhwc[3]),
|
|
static_cast<int>(nhwc[3])};
|
|
|
|
ck::ranges::copy(nchw, ab_lengths.begin());
|
|
|
|
auto broadcastPermute = DeviceElementwisePermuteInstance{};
|
|
auto argument = broadcastPermute.MakeArgumentPointer(
|
|
ab_lengths, {a_strides}, {b_strides}, input, output, PassThrough{});
|
|
|
|
if(!broadcastPermute.IsSupportedArgument(argument.get()))
|
|
{
|
|
throw std::runtime_error(
|
|
"The runtime parameters seems not supported by the device instance, exiting!");
|
|
};
|
|
|
|
std::cout << "A (nchw): " << a.mDesc << std::endl;
|
|
std::cout << "B (nhwc): " << b.mDesc << std::endl;
|
|
|
|
auto broadcastPermute_invoker_ptr = broadcastPermute.MakeInvokerPointer();
|
|
float ave_time =
|
|
broadcastPermute_invoker_ptr->Run(argument.get(), StreamConfig{nullptr, time_kernel});
|
|
std::size_t flop = std::size_t(2) * nchw[0] * nchw[1] * nchw[2] * nchw[3];
|
|
|
|
std::size_t num_btype = sizeof(ADataType) * (nchw[0] * nchw[1] * nchw[2] * nchw[3]) +
|
|
sizeof(BDataType) * (nchw[0] * nchw[1] * nchw[2] * nchw[3]);
|
|
|
|
float tflops = static_cast<float>(flop) / 1.E9 / ave_time;
|
|
|
|
float gb_per_sec = num_btype / 1.E6 / ave_time;
|
|
|
|
std::cout << "Perf: " << ave_time << " ms, " << tflops << " TFlops, " << gb_per_sec << " GB/s"
|
|
<< std::endl;
|
|
bool pass = true;
|
|
|
|
if(do_verification)
|
|
{
|
|
b_device_buf.FromDevice(b.mData.data());
|
|
Tensor<BDataType> host_b(nhwc);
|
|
host_elementwise4D(host_b, a, PassThrough{});
|
|
|
|
pass &=
|
|
ck::utils::check_err(b.mData, host_b.mData, "Error: Incorrect results b", 1e-3, 1e-3);
|
|
}
|
|
|
|
return pass ? 0 : 1;
|
|
}
|