We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d53870 commit c303e58Copy full SHA for c303e58
src/ATen/native/xpu/sycl/IGammaKernel.cpp
@@ -11,7 +11,7 @@ template <typename scalar_t>
11
struct IgammaFunctor {
12
IgammaFunctor(bool calc_igammac) : calc_igammac_(calc_igammac) {}
13
bool calc_igammac_;
14
- scalar_t operator()(scalar_t a, scalar_t b) const {
+ [[clang::optnone]] scalar_t operator()(scalar_t a, scalar_t b) const {
15
if (calc_igammac_) {
16
return calc_igammac<scalar_t>(a, b);
17
} else {
0 commit comments