| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| //===-- NVPTX specific definitions for math support -----------------------===// | ||
| // | ||
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| // See https://llvm.org/LICENSE.txt for license information. | ||
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #ifndef LLVM_LIBC_SRC_MATH_GPU_NVPTX_H | ||
| #define LLVM_LIBC_SRC_MATH_GPU_NVPTX_H | ||
|
|
||
| #include "declarations.h" | ||
|
|
||
| #include "src/__support/macros/attributes.h" | ||
|
|
||
| namespace __llvm_libc { | ||
| namespace internal { | ||
|
|
||
| LIBC_INLINE double sin(double x) { return __nv_sin(x); } | ||
|
|
||
| } // namespace internal | ||
| } // namespace __llvm_libc | ||
|
|
||
| #endif // LLVM_LIBC_SRC_MATH_GPU_NVPTX_H |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| //===-- Implementation of the sin function for GPU ------------------------===// | ||
| // | ||
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| // See https://llvm.org/LICENSE.txt for license information. | ||
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #include "src/math/sin.h" | ||
| #include "src/__support/common.h" | ||
|
|
||
| #include "common.h" | ||
|
|
||
| namespace __llvm_libc { | ||
|
|
||
| LLVM_LIBC_FUNCTION(double, sin, (double x)) { return internal::sin(x); } | ||
|
|
||
| } // namespace __llvm_libc |