/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/test/src/math/differential_testing/log2f_diff.cpp
16 строк
578 B
Tue Ly
[libc] Implement correctly rounded log2f based on RLIBM library.
14 янв 2022, 20:40
14 янв 2022, 20:40
63d2df0
Код
Авторство
О чём код?
//===-- Differential test for log2f ---------------------------------------===// // // 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 "SingleInputSingleOutputDiff.h" #include "src/math/log2f.h" #include <math.h> SINGLE_INPUT_SINGLE_OUTPUT_DIFF(float, __llvm_libc::log2f, ::log2f, "log2f_diff.log")