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