blob: a152746fc8a4a771fa8c2586c150c562ccac53bf [file]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation of the single-precision SIMD exp2 vector function.
///
//===----------------------------------------------------------------------===//
#include "src/mathvec/exp2f.h"
#include "src/__support/mathvec/exp2f.h"
#include "src/mathvec/abi_prefix.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(cpp::simd<float>, exp2f, (cpp::simd<float> x),
LIBC_VFABI_FLOAT_SYMBOL(exp2f)) {
return mathvec::exp2f(x);
}
} // namespace LIBC_NAMESPACE_DECL