@@ -837,7 +837,7 @@ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator*(hip_fp8_e4m3_fnuz a, float b)
837837 return (float (a) * b);
838838}
839839
840- ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator *(int32_t a, hip_fp8_e4m3_fnuz b)
840+ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator *(signed int a, hip_fp8_e4m3_fnuz b)
841841{
842842 return ((float )a * float (b));
843843}
@@ -862,7 +862,7 @@ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator*(hip_fp8_e5m2_fnuz a, float b)
862862 return (float (a) * b);
863863}
864864
865- ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator *(int32_t a, hip_fp8_e5m2_fnuz b)
865+ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator *(signed int a, hip_fp8_e5m2_fnuz b)
866866{
867867 return ((float )a * float (b));
868868}
@@ -899,7 +899,7 @@ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator/(hip_fp8_e4m3_fnuz a, float b)
899899 return (float (a) / b);
900900}
901901
902- ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator /(int32_t a, hip_fp8_e4m3_fnuz b)
902+ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator /(signed int a, hip_fp8_e4m3_fnuz b)
903903{
904904 return ((float )a / float (b));
905905}
@@ -924,7 +924,7 @@ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator/(hip_fp8_e5m2_fnuz a, float b)
924924 return (float (a) / b);
925925}
926926
927- ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator /(int32_t a, hip_fp8_e5m2_fnuz b)
927+ ROCWMMA_FP8_FNUZ_VISIBILITY inline float operator /(signed int a, hip_fp8_e5m2_fnuz b)
928928{
929929 return ((float )a / float (b));
930930}
0 commit comments