1*12779eddSTue Ly //===-- Differential test for hypot ---------------------------------------===// 2*12779eddSTue Ly // 3*12779eddSTue Ly // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*12779eddSTue Ly // See https://llvm.org/LICENSE.txt for license information. 5*12779eddSTue Ly // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*12779eddSTue Ly // 7*12779eddSTue Ly //===----------------------------------------------------------------------===// 8*12779eddSTue Ly 9*12779eddSTue Ly #include "BinaryOpSingleOutputDiff.h" 10*12779eddSTue Ly 11*12779eddSTue Ly #include "src/math/hypot.h" 12*12779eddSTue Ly 13*12779eddSTue Ly #include <math.h> 14*12779eddSTue Ly 15*12779eddSTue Ly BINARY_OP_SINGLE_OUTPUT_PERF(double, __llvm_libc::hypot, ::hypot, 16*12779eddSTue Ly "hypot_perf.log") 17