Skip to content

[SYCL][Test] Devicelib test #1256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c3a5cd5
[SYCL] add test for all math function.
haonanya1 Mar 6, 2020
1816430
[SYCL] in llvm/sycl/source/detail/devicelib/CMakeLists.txt, libsycl-c…
haonanya1 Mar 6, 2020
5540691
[SYCL] Put all math function calls into a single kernel.
haonanya1 Mar 9, 2020
79dce3e
[SYCL] Remove using namespace std in math_utils.hpp
haonanya1 Mar 9, 2020
3836b41
[SYCL] modify std_complex_math_fp64_test.cpp and std_complex_math_tes…
haonanya1 Mar 9, 2020
e28efb4
[SYCL] [Test] Put all math function calls into a single kernel
haonanya1 Mar 11, 2020
1251e56
[SYCL] [Test] Deal with nan and inf input in is_about_FP function in …
haonanya1 Mar 11, 2020
9d62247
[SYCL] Format code
haonanya1 Mar 11, 2020
b670056
[SYCL] Code clean
haonanya1 Mar 13, 2020
fd16ef2
[SYCL] [Test] Improve readability for math_utils.hpp
haonanya1 Mar 16, 2020
764518e
Update sycl/test/devicelib/math_utils.hpp
haonanya Mar 18, 2020
10c938b
[SYCL] Add comment for is_about_FP function in math_utils.hpp
haonanya1 Mar 18, 2020
e8bfe40
[SYCL] [Test] Rename is_about_FP function and remove ret to use early…
haonanya1 Mar 19, 2020
014d3b2
[SYCL] [Test] Rename complex compare function.
haonanya1 Mar 19, 2020
6ef6fac
[SYCL] [Test] There is a rename for float point compare in math_utils…
haonanya1 Mar 19, 2020
0e84acf
Merge branch 'sycl' into devicelibTest
haonanya1 Mar 20, 2020
d6cd3fc
Merge branch 'sycl' into devicelibTest
haonanya1 Mar 23, 2020
88fc254
Fix use else after return issue
haonanya1 Apr 7, 2020
048e5d0
[SYCL][Test] Enable cmath lit test.
haonanya1 Apr 9, 2020
e8ac45e
[SYCL][Test] Enable Host device for math_override.cpp.
haonanya1 Apr 9, 2020
a54c5f1
[SYCL] [Test] Fix format issue.
haonanya1 Apr 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/source/detail/devicelib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ add_custom_command(OUTPUT ${devicelib-obj-cmath}
${CMAKE_CURRENT_SOURCE_DIR}/cmath_wrapper.cpp
-o ${devicelib-obj-cmath}
MAIN_DEPENDENCY cmath_wrapper.cpp
DEPENDS device_complex.h clang
DEPENDS device_math.h clang
VERBATIM)

set(devicelib-obj-cmath-fp64 ${binary_dir}/libsycl-cmath-fp64.o)
Expand Down
Loading