summaryrefslogtreecommitdiff
path: root/src/math/nvptx/nearbyint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/nvptx/nearbyint.cpp')
-rw-r--r--src/math/nvptx/nearbyint.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/math/nvptx/nearbyint.cpp b/src/math/nvptx/nearbyint.cpp
new file mode 100644
index 000000000000..9c7b600df708
--- /dev/null
+++ b/src/math/nvptx/nearbyint.cpp
@@ -0,0 +1,18 @@
+//===-- Implementation of the GPU nearbyint function ----------------------===//
+//
+// 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/nearbyint.h"
+#include "src/__support/common.h"
+
+namespace LIBC_NAMESPACE {
+
+LLVM_LIBC_FUNCTION(double, nearbyint, (double x)) {
+ return __builtin_nearbyint(x);
+}
+
+} // namespace LIBC_NAMESPACE