mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 12:41:26 +00:00
* Reference CGEMM + test stub * Format. * Incomplete simple implementation * Library instances * Sketch of tests * Test fixes. * Example added * Cosmetics * Add elementwise operation kernel and example * Add comment * Add template argument of dim . Prepare to support multiple dimension * Rename example * Support 1 dimension * Add static assert * Add comment * Second auxiliary buffer added * Extract pad * Remove redundant argument * Support any dimension for elementwise operation * Remove line * Let it be the multiple number of CU * Move thread per block to the parameter of constructor * Consuming binary ops to do A+B / A-B * Fix + cosmetics + bf16 test commented out temporarily * Format * Enabling bf16 test * Revert "Enabling bf16 test" This reverts commitf497e2ba44. * Fix + test reenabled * fix build * Revert "fix build" This reverts commitd73102384b. * post PR #235 merge fix * amend * Single workspace for cgemm + helper * Perf calc fix * Review remarks: static_cast * Review remarks: binary ops templated * Cleaning * Removal of instances and their tests * Review remarks from aosew addressed * Review remark: unnecessary attribute * Post-merge fixes * Restrict 4gemm to PassThrough + bug fix * Review remarks * update licence * change cgemm example to fp16 Co-authored-by: rocking <chunylai@amd.com> Co-authored-by: Chao Liu <chao.liu2@amd.com> Co-authored-by: Anthony Chang <ac.chang@outlook.com>
148 lines
5.8 KiB
C++
148 lines
5.8 KiB
C++
/*******************************************************************************
|
|
*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020 Advanced Micro Devices, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*******************************************************************************/
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#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<EltwiseComputeDataType, EltwiseComputeDataType, EltwiseComputeDataType>;
|
|
|
|
using DeviceElementwiseAddInstance =
|
|
ck::tensor_operation::device::DeviceBinaryElementwise<ABDataType,
|
|
ABDataType,
|
|
CDataType,
|
|
EltwiseComputeDataType,
|
|
Add,
|
|
4,
|
|
8,
|
|
8,
|
|
8,
|
|
8>;
|
|
|
|
template <typename HostTensorA,
|
|
typename HostTensorB,
|
|
typename HostTensorC,
|
|
typename ComputeDataType,
|
|
typename Functor>
|
|
void host_elementwise4D(HostTensorC& C,
|
|
const HostTensorA& A,
|
|
const HostTensorB& B,
|
|
const std::vector<std::size_t>& shape,
|
|
Functor functor)
|
|
{
|
|
using ctype = ck::remove_reference_t<decltype(C(0, 0, 0, 0))>;
|
|
|
|
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 = ck::type_convert<ComputeDataType>(A(n, c, h, w));
|
|
ComputeDataType b_val = ck::type_convert<ComputeDataType>(B(n, c, h, w));
|
|
ComputeDataType c_val = 0;
|
|
functor(c_val, a_val, b_val);
|
|
C(n, c, h, w) = ck::type_convert<ctype>(c_val);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
bool do_verification = true;
|
|
bool time_kernel = false;
|
|
|
|
std::vector<std::size_t> nchw = {4, 16, 32, 32};
|
|
|
|
Tensor<ABDataType> a(nchw);
|
|
Tensor<ABDataType> b(nchw);
|
|
Tensor<CDataType> c(nchw);
|
|
|
|
a.GenerateTensorValue(GeneratorTensor_3<ABDataType>{0.0, 1.0});
|
|
b.GenerateTensorValue(GeneratorTensor_3<ABDataType>{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<ck::index_t>{nchw.begin(), nchw.end()},
|
|
std::vector<ck::index_t>{a.mDesc.GetStrides().begin(), a.mDesc.GetStrides().end()},
|
|
std::vector<ck::index_t>{b.mDesc.GetStrides().begin(), b.mDesc.GetStrides().end()},
|
|
std::vector<ck::index_t>{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<CDataType> host_c(nchw);
|
|
|
|
host_elementwise4D<Tensor<ABDataType>,
|
|
Tensor<ABDataType>,
|
|
Tensor<CDataType>,
|
|
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;
|
|
}
|