Commit 41a5571 1 parent 0dc53c5 commit 41a5571 Copy full SHA for 41a5571
File tree 1 file changed +27
-0
lines changed
test/xpu_api/numerics/special/bessel
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ // ===----------------------------------------------------------------------===//
2
+ //
3
+ // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
+ // See https://llvm.org/LICENSE.txt for license information.
5
+ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
+ //
7
+ // ===----------------------------------------------------------------------===//
8
+
9
+ #include " support/test_complex.h"
10
+
11
+ // cyl_bessel_jl
12
+ #include < cmath>
13
+
14
+ void
15
+ test ()
16
+ {
17
+ long double nul = 1 .0L / 3 .0L , xl = 0 .5L ;
18
+
19
+ std::cyl_bessel_kl (nul, xl);
20
+ }
21
+
22
+ ONEDPL_TEST_NUM_MAIN
23
+ {
24
+ IF_LONG_DOUBLE_SUPPORT (test ())
25
+
26
+ return 0 ;
27
+ }
You can’t perform that action at this time.
0 commit comments