Merge commit '3b076b0b74fec1c5a27a808cea45b21c6f526ced' into develop

This commit is contained in:
assistant-librarian[bot]
2025-11-05 03:31:59 +00:00
parent 7148cc6371
commit ea517e1c34
3 changed files with 20 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ struct AddReluAdd
__host__ __device__ constexpr void operator()<half_t, float, half_t, half_t>(
half_t& y, const float& x0, const half_t& x1, const half_t& x2) const
{
float y_float;
float y_float = 0.0;
(*this)(y_float, x0, x1, x2);
y = y_float;
}