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