1*d99bb014Slntue //===-- Differential test for log2f ---------------------------------------===// 2*d99bb014Slntue // 3*d99bb014Slntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*d99bb014Slntue // See https://llvm.org/LICENSE.txt for license information. 5*d99bb014Slntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*d99bb014Slntue // 7*d99bb014Slntue //===----------------------------------------------------------------------===// 8*d99bb014Slntue 9*d99bb014Slntue #include "SingleInputSingleOutputPerf.h" 10*d99bb014Slntue 11*d99bb014Slntue #include "src/math/log2f.h" 12*d99bb014Slntue 13*d99bb014Slntue #include <math.h> 14*d99bb014Slntue 15*d99bb014Slntue SINGLE_INPUT_SINGLE_OUTPUT_PERF(float, LIBC_NAMESPACE::log2f, ::log2f, 16*d99bb014Slntue "log2f_perf.log") 17