llvm-project/libclc/generic/lib/math/native_rsqrt.inc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
107 B
PHP
Raw Normal View History

_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE native_rsqrt(__CLC_GENTYPE val) {
return 1.0f / native_sqrt(val);
}