Skip to content

Commit

Permalink
Update device properties for Samsung device with native builtins (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpavank authored Mar 9, 2024
1 parent d2df460 commit 0c6a3e3
Showing 1 changed file with 6 additions and 22 deletions.
28 changes: 6 additions & 22 deletions src/device_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,28 +161,12 @@ struct cvk_device_properties_samsung_xclipse_920
std::string vendor() const override final { return "Samsung"; }
const std::set<std::string> get_native_builtins() const override final {
return std::set<std::string>({
"acos", "acospi", "asin",
"asinpi", "atan", "atanpi",
"ceil", "copysign", "cos",
"cosh", "cospi", "erfc",
"erf", "exp", "exp2",
"exp10", "expm1", "fabs",
"fdim", "floor", "fma",
"fmax", "fmin", "frexp",
"half_cos", "half_exp", "half_exp2",
"half_exp10", "half_log", "half_log2",
"half_log10", "half_powr", "half_rsqrt",
"half_sin", "half_sqrt", "isequal",
"isfinite", "isgreater", "isgreaterequal",
"isinf", "isless", "islessequal",
"islessgreater", "isnan", "isnormal",
"isnotequal", "isordered", "isunordered",
"ldexp", "log", "log10",
"log1p", "log2", "mad",
"pow", "pown", "powr",
"rint", "round", "rsqrt",
"sin", "sincos", "sinh",
"sinpi", "sqrt", "tan",
"ceil", "fabs", "floor", "fma",
"fmax", "fmin", "half_exp2", "half_log2",
"half_rsqrt", "half_sqrt", "isequal", "isgreater",
"isgreaterequal", "isless", "islessequal", "islessgreater",
"isnotequal", "log2", "mad", "round",
"rsqrt", "sqrt", "exp2",
});
}
};
Expand Down

0 comments on commit 0c6a3e3

Please sign in to comment.