Initialize new variable to prevent c++17 compiler error (#3156)

* initialize new variable to prevent c++17 compiler error

* build for gfx90a using -std=c++17 flag
This commit is contained in:
Illia Silin
2025-11-04 18:54:14 -08:00
committed by GitHub
parent 31c019f589
commit 930423ab3b
2 changed files with 3 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;
}