https://github.com/arsenm commented:
ocml rsqrt should be deleted, this is implementable by
```
float rsqrt(float x) {
#pragma clang fp contract(fast)
return 1.0f / __builtin_elementwise_sqrt(x);
}
```
https://github.com/llvm/llvm-project/pull/152436
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
