mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-21 13:29:20 +00:00
* [CK] Add command option instance_index and param_mask to run partial ck test
Many CK test are instance test. it will loop all instance in the instance library. It causes test often out-of-time if we run test on simulator/emulator.
This PR add option instance_index and param_mask to reduce the workload of instance test
instance_index: only run test 1 available instance with specified index.
param_mask: filter the embedded parameter with specified mask
* fix CI error
* fix clang format
---------
Co-authored-by: illsilin_amdeng <Illia.Silin@amd.com>
[ROCm/composable_kernel commit: e78a897ec0]
348 lines
14 KiB
C++
348 lines
14 KiB
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <iomanip>
|
|
|
|
#include "ck/ck.hpp"
|
|
#include "ck/library/tensor_operation_instance/gpu/pool3d_fwd.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"
|
|
#include "ck/library/utility/literals.hpp"
|
|
#include "ck/library/reference_tensor_operation/cpu/reference_pool_fwd.hpp"
|
|
|
|
namespace ck {
|
|
namespace profiler {
|
|
|
|
struct PoolFwdInputParams
|
|
{
|
|
int do_verification;
|
|
int init_method;
|
|
bool do_log;
|
|
bool time_kernel;
|
|
bool return_index;
|
|
int reduce_op;
|
|
};
|
|
|
|
struct PoolFwdKernelParams
|
|
{
|
|
std::vector<index_t> in_length; // NCDHW
|
|
std::vector<index_t> window_spatial_lengths;
|
|
std::vector<index_t> window_strides;
|
|
std::vector<index_t> window_dilations;
|
|
std::vector<index_t> input_left_pads;
|
|
std::vector<index_t> input_right_pads;
|
|
};
|
|
|
|
template <typename InDataType,
|
|
typename OutDataType,
|
|
typename ComputeDataType,
|
|
typename IndexDataType,
|
|
typename InLayout,
|
|
typename OutLayout,
|
|
ck::ReduceTensorOp ReduceOpId,
|
|
bool PropagateNan,
|
|
bool OutputIndex>
|
|
bool profile_pool3d_fwd_impl(PoolFwdInputParams& in_params,
|
|
PoolFwdKernelParams& kernel_params,
|
|
index_t instance_index = -1)
|
|
{
|
|
constexpr index_t InOutRank = 5;
|
|
constexpr index_t WindowRank = 3;
|
|
|
|
if(kernel_params.in_length.size() != InOutRank ||
|
|
kernel_params.window_spatial_lengths.size() != WindowRank ||
|
|
kernel_params.window_strides.size() != WindowRank ||
|
|
kernel_params.window_dilations.size() != WindowRank ||
|
|
kernel_params.input_left_pads.size() != WindowRank ||
|
|
kernel_params.input_right_pads.size() != WindowRank)
|
|
return false;
|
|
|
|
std::vector<index_t> out_length(InOutRank);
|
|
|
|
int N = kernel_params.in_length[0];
|
|
int C = kernel_params.in_length[1];
|
|
|
|
out_length[0] = N;
|
|
out_length[1] = C;
|
|
|
|
// Calculate Do, Ho, Wo
|
|
for(int i = 2; i < InOutRank; ++i)
|
|
{
|
|
auto pad1 = kernel_params.input_left_pads[i - 2];
|
|
auto pad2 = kernel_params.input_right_pads[i - 2];
|
|
auto windows_size = kernel_params.window_spatial_lengths[i - 2];
|
|
auto windows_stride = kernel_params.window_strides[i - 2];
|
|
auto windows_dilation = kernel_params.window_dilations[i - 2];
|
|
auto eff = (windows_size - 1) * windows_dilation + 1;
|
|
out_length[i] = (kernel_params.in_length[i] + pad1 + pad2 - eff) / windows_stride + 1;
|
|
}
|
|
|
|
int Di = kernel_params.in_length[2];
|
|
int Hi = kernel_params.in_length[3];
|
|
int Wi = kernel_params.in_length[4];
|
|
int Do = out_length[2];
|
|
int Ho = out_length[3];
|
|
int Wo = out_length[4];
|
|
|
|
auto f_host_tensor_descriptor =
|
|
[](std::size_t N_, std::size_t C_, std::size_t D, std::size_t H, std::size_t W) {
|
|
using namespace ck::literals;
|
|
|
|
return HostTensorDescriptor({N_, C_, D, H, W},
|
|
{D * C_ * H * W, 1_uz, C_ * H * W, W * C_, C_},
|
|
ck::tensor_layout::convolution::NDHWC{});
|
|
};
|
|
|
|
Tensor<InDataType> in_n_c_di_hi_wi(f_host_tensor_descriptor(N, C, Di, Hi, Wi));
|
|
Tensor<OutDataType> out_n_c_do_ho_wo_host(f_host_tensor_descriptor(N, C, Do, Ho, Wo));
|
|
Tensor<IndexDataType> out_indices_n_c_do_ho_wo_host(f_host_tensor_descriptor(N, C, Do, Ho, Wo));
|
|
|
|
Tensor<OutDataType> out_n_c_do_ho_wo_device(f_host_tensor_descriptor(N, C, Do, Ho, Wo));
|
|
Tensor<IndexDataType> out_indices_n_c_do_ho_wo_device(
|
|
f_host_tensor_descriptor(N, C, Do, Ho, Wo));
|
|
|
|
constexpr int inDataRangeTensor1{1};
|
|
constexpr int inDataRangeTensor2{5};
|
|
constexpr double inDataRangeTensor3{0.5};
|
|
|
|
switch(in_params.init_method)
|
|
{
|
|
case 0:
|
|
in_n_c_di_hi_wi.GenerateTensorValue(GeneratorTensor_1<InDataType>{inDataRangeTensor1});
|
|
break;
|
|
case 1:
|
|
in_n_c_di_hi_wi.GenerateTensorValue(
|
|
GeneratorTensor_2<InDataType>{-inDataRangeTensor2, inDataRangeTensor2});
|
|
break;
|
|
default:
|
|
in_n_c_di_hi_wi.GenerateTensorValue(
|
|
GeneratorTensor_3<InDataType>{-inDataRangeTensor3, inDataRangeTensor3});
|
|
}
|
|
|
|
DeviceMem in_device_buf(sizeof(InDataType) * in_n_c_di_hi_wi.mDesc.GetElementSpaceSize());
|
|
DeviceMem out_device_buf(sizeof(OutDataType) *
|
|
out_n_c_do_ho_wo_device.mDesc.GetElementSpaceSize());
|
|
DeviceMem out_indices_device_buf(sizeof(IndexDataType) *
|
|
out_indices_n_c_do_ho_wo_device.mDesc.GetElementSpaceSize());
|
|
|
|
in_device_buf.ToDevice(in_n_c_di_hi_wi.mData.data());
|
|
|
|
// add device normalization instances
|
|
using DeviceOp = ck::tensor_operation::device::DevicePoolFwd<InOutRank,
|
|
WindowRank,
|
|
InDataType,
|
|
OutDataType,
|
|
IndexDataType,
|
|
InLayout,
|
|
OutLayout,
|
|
ReduceOpId,
|
|
OutputIndex>;
|
|
|
|
// get device op instances
|
|
const auto instance_ptrs =
|
|
ck::tensor_operation::device::instance::DeviceOperationInstanceFactory<
|
|
DeviceOp>::GetInstances();
|
|
|
|
std::cout << "found " << instance_ptrs.size() << " instances" << std::endl;
|
|
|
|
std::string best_instance_name;
|
|
float best_avg_time = std::numeric_limits<float>::max();
|
|
float best_gb_per_sec = 0;
|
|
|
|
if(in_params.do_verification)
|
|
{
|
|
using ReferenceInstance = ck::tensor_operation::host::ReferencePoolingFwd<InOutRank,
|
|
WindowRank,
|
|
InDataType,
|
|
OutDataType,
|
|
ComputeDataType,
|
|
IndexDataType,
|
|
ReduceOpId,
|
|
PropagateNan,
|
|
OutputIndex>;
|
|
|
|
ReferenceInstance ref;
|
|
auto ref_argument = ref.MakeArgument(in_n_c_di_hi_wi,
|
|
out_n_c_do_ho_wo_host,
|
|
out_indices_n_c_do_ho_wo_host,
|
|
kernel_params.window_spatial_lengths,
|
|
kernel_params.window_strides,
|
|
kernel_params.window_dilations,
|
|
kernel_params.input_left_pads,
|
|
kernel_params.input_right_pads);
|
|
auto ref_invoker = ref.MakeInvoker();
|
|
ref_invoker.Run(ref_argument);
|
|
}
|
|
|
|
int num_kernel = 0;
|
|
|
|
for(auto& inst_ptr : instance_ptrs)
|
|
{
|
|
auto argument_ptr = inst_ptr->MakeArgumentPointer(
|
|
static_cast<InDataType*>(in_device_buf.GetDeviceBuffer()),
|
|
static_cast<OutDataType*>(out_device_buf.GetDeviceBuffer()),
|
|
static_cast<IndexDataType*>(out_indices_device_buf.GetDeviceBuffer()),
|
|
kernel_params.in_length,
|
|
kernel_params.window_spatial_lengths,
|
|
out_length,
|
|
{Di * C * Hi * Wi, 1, C * Hi * Wi, Wi * C, C},
|
|
{Do * C * Ho * Wo, 1, C * Ho * Wo, Wo * C, C},
|
|
{Do * C * Ho * Wo, 1, C * Ho * Wo, Wo * C, C},
|
|
kernel_params.window_strides,
|
|
kernel_params.window_dilations,
|
|
kernel_params.input_left_pads,
|
|
kernel_params.input_right_pads,
|
|
{2, 3, 4});
|
|
|
|
if(inst_ptr->IsSupportedArgument(argument_ptr.get()))
|
|
{
|
|
++num_kernel;
|
|
if((instance_index != -1) && (instance_index + 1 != num_kernel))
|
|
{
|
|
// skip test if instance_index is specified
|
|
continue;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(in_params.time_kernel)
|
|
{
|
|
std::cout << inst_ptr->GetTypeString() << " skipped due to unsupported argument: ";
|
|
LogRange(std::cout << "input lengths = ", kernel_params.in_length, ", ")
|
|
<< std::endl;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
auto invoker_ptr = inst_ptr->MakeInvokerPointer();
|
|
|
|
float avg_time =
|
|
invoker_ptr->Run(argument_ptr.get(), StreamConfig{nullptr, in_params.time_kernel});
|
|
|
|
std::size_t num_bytes = in_n_c_di_hi_wi.mDesc.GetElementSize() * sizeof(InDataType) +
|
|
out_n_c_do_ho_wo_host.mDesc.GetElementSize() * sizeof(OutDataType);
|
|
|
|
if constexpr(OutputIndex)
|
|
num_bytes +=
|
|
out_indices_n_c_do_ho_wo_host.mDesc.GetElementSize() * sizeof(IndexDataType);
|
|
|
|
float gb_per_sec = num_bytes / 1.E6 / avg_time;
|
|
|
|
if(in_params.time_kernel)
|
|
std::cout << "Perf: " << std::setw(10) << avg_time << " ms, " << gb_per_sec << " GB/s, "
|
|
<< inst_ptr->GetTypeString() << std::endl;
|
|
|
|
if(avg_time < best_avg_time)
|
|
{
|
|
best_instance_name = inst_ptr->GetTypeString();
|
|
best_avg_time = avg_time;
|
|
best_gb_per_sec = gb_per_sec;
|
|
}
|
|
|
|
if(in_params.do_verification)
|
|
{
|
|
out_device_buf.FromDevice(out_n_c_do_ho_wo_device.mData.data());
|
|
|
|
auto number_of_accumulations = 1;
|
|
static_assert(
|
|
ReduceOpId == ck::ReduceTensorOp::AVG || ReduceOpId == ck::ReduceTensorOp::MAX,
|
|
"Warning: Unhandled ReduceOpId for setting up the number of accumulations!");
|
|
|
|
if constexpr(ReduceOpId == ck::ReduceTensorOp::AVG)
|
|
{
|
|
for(size_t i = 0; i < kernel_params.window_spatial_lengths.size(); ++i)
|
|
{
|
|
number_of_accumulations *= kernel_params.window_spatial_lengths.at(i);
|
|
}
|
|
}
|
|
|
|
auto absolute_error_threshold = 1.0;
|
|
switch(in_params.init_method)
|
|
{
|
|
case 0: absolute_error_threshold = static_cast<double>(inDataRangeTensor1); break;
|
|
case 1: absolute_error_threshold = static_cast<double>(inDataRangeTensor2); break;
|
|
default: absolute_error_threshold = inDataRangeTensor3;
|
|
}
|
|
|
|
absolute_error_threshold =
|
|
ck::utils::get_absolute_threshold<ComputeDataType, OutDataType>(
|
|
absolute_error_threshold, number_of_accumulations);
|
|
auto relative_error_threshold =
|
|
ck::utils::get_relative_threshold<ComputeDataType, OutDataType>(
|
|
number_of_accumulations);
|
|
|
|
bool pass = ck::utils::check_err(out_n_c_do_ho_wo_device.mData,
|
|
out_n_c_do_ho_wo_host.mData,
|
|
"Error: Incorrect results",
|
|
relative_error_threshold,
|
|
absolute_error_threshold);
|
|
|
|
if constexpr(OutputIndex)
|
|
{
|
|
out_indices_device_buf.FromDevice(out_indices_n_c_do_ho_wo_device.mData.data());
|
|
pass = pass && ck::utils::check_err(out_indices_n_c_do_ho_wo_device,
|
|
out_indices_n_c_do_ho_wo_host);
|
|
}
|
|
|
|
if(in_params.do_log)
|
|
{
|
|
LogRangeAsType<float>(
|
|
std::cout << "in_n_c_di_hi_wi : ", in_n_c_di_hi_wi.mData, ",")
|
|
<< std::endl;
|
|
LogRangeAsType<float>(
|
|
std::cout << "out_n_c_do_ho_wo_host : ", out_n_c_do_ho_wo_host.mData, ",")
|
|
<< std::endl;
|
|
LogRangeAsType<float>(
|
|
std::cout << "out_n_c_do_ho_wo_device : ", out_n_c_do_ho_wo_device.mData, ",")
|
|
<< std::endl;
|
|
|
|
if constexpr(OutputIndex)
|
|
LogRangeAsType<float>(std::cout << "out_indices_n_c_do_ho_wo_device : ",
|
|
out_indices_n_c_do_ho_wo_device.mData,
|
|
",")
|
|
<< std::endl;
|
|
}
|
|
|
|
if(!pass)
|
|
{
|
|
std::cout << inst_ptr->GetTypeString() << " failed verification: ";
|
|
LogRange(std::cout << "lengths = [", kernel_params.in_length, ", ")
|
|
<< "]." << std::endl;
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
if(in_params.time_kernel)
|
|
std::cout << "pass" << std::endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(in_params.time_kernel)
|
|
{
|
|
LogRange(std::cout << "length = ", kernel_params.in_length, ",") << std::endl;
|
|
std::cout << "best perf = " << best_avg_time << " ms, " << best_gb_per_sec << " GB/s, "
|
|
<< best_instance_name << std::endl;
|
|
}
|
|
|
|
if(num_kernel == 0)
|
|
{
|
|
std::cout << "Error: No kernel is applicable" << std::endl;
|
|
return false;
|
|
}
|
|
if(instance_index != -1)
|
|
{
|
|
std::cout << "max_pool3d_fwd_instance (" << instance_index << "/" << num_kernel
|
|
<< "): Passed" << std::endl;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace profiler
|
|
} // namespace ck
|