Skip to content

Commit 41a5571

Browse files
test/xpu_api/numerics/special/bessel/bessel_kl.pass.cpp
1 parent 0dc53c5 commit 41a5571

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
}

0 commit comments

Comments
 (0)