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
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to