mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 17:26:00 +00:00
refactor
This commit is contained in:
@@ -28,13 +28,7 @@ struct minus
|
||||
__host__ __device__ constexpr T operator()(T a, T b) const { return a - b; }
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct multiplies
|
||||
{
|
||||
__host__ __device__ constexpr T operator()(T a, T b) const { return a * b; }
|
||||
};
|
||||
|
||||
struct multiplies_v2
|
||||
{
|
||||
template <typename A, typename B>
|
||||
__host__ __device__ constexpr auto operator()(const A& a, const B& b) const
|
||||
|
||||
Reference in New Issue
Block a user