Merge pull request #141 from ziliangzl/double-operation

[Ventus][fix] Fix #140 complete double type support for smoothstep function
This commit is contained in:
ZhouJing(周晶) 2024-08-13 17:50:58 +08:00 committed by GitHub
commit c9f7a7767b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ SMOOTH_STEP_DEF(double, float, SMOOTH_STEP_IMPL_D);
_CLC_V_S_S_V_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, smoothstep, float, float, double);
_CLC_V_S_S_V_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, smoothstep, double, double, float);
_CLC_V_S_S_V_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, smoothstep, double, double, double);
#endif
#endif