mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-05 14:11:29 +00:00
* fix relu * clean up * clean up * adding 1x1 conv * adding 1x1 conv * added 1x1 conv * refactor * refactor * refactor * added profiler for conv+bias+relu+add * clean up * adding conv+bias+relu * adding conv+bias+relu * added conv+bias+relu * Update README.md * update cpu verification * adding c shuffle * update static_tensor for dealing with invalid element * adding c shuffle * debugging * fix bug * convert to fp16 before shuffle * shuffle more than one M/NRepeat * clean up * remove coordinate step hack from GridwiseGemm_k0mk1_k0nk1_mn_xdlops_v3r1 * clean up * remove coordinate step hack from all gridwise gemm xdl * clean up coordinate step hack * clean up coordinate step hack * ThreadwiseTensorSliceTransfer_v3r2 support pointwise op on both src and dst * adding output shuffle in conv+bias+relu+add * update * added conv+bias+relu+add with c shuffle * added conv+bias+relu+add with c shuffle * fix forward_sweep bugs in threadwise copy * clean up * refactor * clean up * clean up * added conv_c_shuffle+bias_relu * clean up * added conv+bias+relu+atomic_add * clean up * clean up * clean up * clean up * clean up * clean up * misc fixes; add 1x1 specialization * clean up * delete unused device op * clean up * add support for odd C value
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#ifndef DEVICE_BASE_HPP
|
|
#define DEVICE_BASE_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace ck {
|
|
namespace tensor_operation {
|
|
namespace device {
|
|
|
|
struct BaseArgument
|
|
{
|
|
BaseArgument() = default;
|
|
BaseArgument(const BaseArgument&) = default;
|
|
BaseArgument& operator=(const BaseArgument&) = default;
|
|
|
|
virtual ~BaseArgument() {}
|
|
};
|
|
|
|
struct BaseInvoker
|
|
{
|
|
BaseInvoker() = default;
|
|
BaseInvoker(const BaseInvoker&) = default;
|
|
BaseInvoker& operator=(const BaseInvoker&) = default;
|
|
|
|
virtual float Run(const BaseArgument*, int = 1) = 0;
|
|
|
|
virtual ~BaseInvoker() {}
|
|
};
|
|
|
|
struct BaseOperator
|
|
{
|
|
BaseOperator() = default;
|
|
BaseOperator(const BaseOperator&) = default;
|
|
BaseOperator& operator=(const BaseOperator&) = default;
|
|
|
|
virtual bool IsSupportedArgument(const BaseArgument*) = 0;
|
|
virtual std::string GetTypeString() const = 0;
|
|
|
|
virtual ~BaseOperator() {}
|
|
};
|
|
|
|
} // namespace device
|
|
} // namespace tensor_operation
|
|
} // namespace ck
|
|
#endif
|