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