xref: /llvm-project/libc/test/src/math/performance_testing/fmodl_perf.cpp (revision 4d21e75210d936d4f05e8aa9ea33beb552cd19b1)
1*4d21e752Slntue //===-- Differential test for fmodl ---------------------------------------===//
2*4d21e752Slntue //
3*4d21e752Slntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*4d21e752Slntue // See https://llvm.org/LICENSE.txt for license information.
5*4d21e752Slntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*4d21e752Slntue //
7*4d21e752Slntue //===----------------------------------------------------------------------===//
8*4d21e752Slntue 
9*4d21e752Slntue #include "BinaryOpSingleOutputDiff.h"
10*4d21e752Slntue 
11*4d21e752Slntue #include "src/math/fmodl.h"
12*4d21e752Slntue 
13*4d21e752Slntue #include <math.h>
14*4d21e752Slntue 
15*4d21e752Slntue BINARY_OP_SINGLE_OUTPUT_PERF(long double, LIBC_NAMESPACE::fmodl, ::fmodl,
16*4d21e752Slntue                              "fmodl_perf.log")
17