mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-27 18:47:39 +00:00
141 lines
3.9 KiB
C++
141 lines
3.9 KiB
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
#include "data_type.hpp"
|
|
#include "dtype_fp64.hpp"
|
|
|
|
namespace ck {
|
|
|
|
// Caution: DO NOT REMOVE
|
|
// intentionally have only declaration but no definition to cause compilation failure when trying to
|
|
// instantiate this template. The purpose is to make the implementation of atomic_add explicit for
|
|
// each datatype.
|
|
template <typename X>
|
|
__device__ X atomic_add(X* p_dst, const X& x);
|
|
|
|
template <>
|
|
__device__ int32_t atomic_add<int32_t>(int32_t* p_dst, const int32_t& x)
|
|
{
|
|
return atomicAdd(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ uint32_t atomic_add<uint32_t>(uint32_t* p_dst, const uint32_t& x)
|
|
{
|
|
return atomicAdd(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ float atomic_add<float>(float* p_dst, const float& x)
|
|
{
|
|
return atomicAdd(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ unsigned short atomic_add<unsigned short>(unsigned short* p_dst, const unsigned short& x)
|
|
{
|
|
// Use atomicAdd with unsigned int
|
|
return static_cast<unsigned short>(
|
|
atomicAdd(reinterpret_cast<unsigned int*>(p_dst), static_cast<unsigned int>(x)));
|
|
}
|
|
|
|
template <>
|
|
__device__ _Float16 atomic_add<_Float16>(_Float16* p_dst, const _Float16& x)
|
|
{
|
|
// Use atomicAdd with unsigned int
|
|
return static_cast<_Float16>(
|
|
atomicAdd(reinterpret_cast<unsigned int*>(p_dst), static_cast<unsigned int>(x)));
|
|
}
|
|
|
|
template <>
|
|
__device__ double atomic_add<double>(double* p_dst, const double& x)
|
|
{
|
|
return atomicAdd(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ float2_t atomic_add<float2_t>(float2_t* p_dst, const float2_t& x)
|
|
{
|
|
constexpr auto I0 = Number<0>{};
|
|
constexpr auto I1 = Number<1>{};
|
|
|
|
const vector_type<float, 2> vx{x};
|
|
vector_type<float, 2> vy{0};
|
|
|
|
vy.template AsType<float>()(I0) =
|
|
atomicAdd(c_style_pointer_cast<float*>(p_dst), vx.template AsType<float>()[I0]);
|
|
vy.template AsType<float>()(I1) =
|
|
atomicAdd(c_style_pointer_cast<float*>(p_dst) + 1, vx.template AsType<float>()[I1]);
|
|
|
|
return vy.template AsType<float2_t>()[I0];
|
|
}
|
|
|
|
template <>
|
|
__device__ double2_t atomic_add<double2_t>(double2_t* p_dst, const double2_t& x)
|
|
{
|
|
constexpr auto I0 = Number<0>{};
|
|
constexpr auto I1 = Number<1>{};
|
|
|
|
const vector_type<double, 2> vx{x};
|
|
vector_type<double, 2> vy{0};
|
|
|
|
vy.template AsType<double>()(I0) =
|
|
atomicAdd(c_style_pointer_cast<double*>(p_dst), vx.template AsType<double>()[I0]);
|
|
vy.template AsType<double>()(I1) =
|
|
atomicAdd(c_style_pointer_cast<double*>(p_dst) + 1, vx.template AsType<double>()[I1]);
|
|
|
|
return vy.template AsType<double2_t>()[I0];
|
|
}
|
|
|
|
// Caution: DO NOT REMOVE
|
|
// intentionally have only declaration but no definition to cause compilation failure when trying to
|
|
// instantiate this template. The purpose is to make the implementation of atomic_max explicit for
|
|
// each datatype.
|
|
|
|
template <typename X>
|
|
__device__ X atomic_max(X* p_dst, const X& x);
|
|
|
|
template <>
|
|
__device__ int32_t atomic_max<int32_t>(int32_t* p_dst, const int32_t& x)
|
|
{
|
|
return atomicMax(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ uint32_t atomic_max<uint32_t>(uint32_t* p_dst, const uint32_t& x)
|
|
{
|
|
return atomicMax(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ float atomic_max<float>(float* p_dst, const float& x)
|
|
{
|
|
return atomicMax(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ double atomic_max<double>(double* p_dst, const double& x)
|
|
{
|
|
return atomicMax(p_dst, x);
|
|
}
|
|
|
|
template <>
|
|
__device__ float2_t atomic_max<float2_t>(float2_t* p_dst, const float2_t& x)
|
|
{
|
|
constexpr auto I0 = Number<0>{};
|
|
constexpr auto I1 = Number<1>{};
|
|
|
|
const vector_type<float, 2> vx{x};
|
|
vector_type<float, 2> vy{0};
|
|
|
|
vy.template AsType<float>()(I0) =
|
|
atomicMax(c_style_pointer_cast<float*>(p_dst), vx.template AsType<float>()[I0]);
|
|
vy.template AsType<float>()(I1) =
|
|
atomicMax(c_style_pointer_cast<float*>(p_dst) + 1, vx.template AsType<float>()[I1]);
|
|
|
|
return vy.template AsType<float2_t>()[I0];
|
|
}
|
|
|
|
} // namespace ck
|