From b8c12976dbb8d78db6695e691f411799ba84e89a Mon Sep 17 00:00:00 2001 From: architeuthidae Date: Thu, 4 Jul 2024 14:40:29 +0800 Subject: [PATCH] math_fns: Delete duplicated definition --- artiq/compiler/math_fns.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/artiq/compiler/math_fns.py b/artiq/compiler/math_fns.py index 35d23b534..1a815b2dd 100644 --- a/artiq/compiler/math_fns.py +++ b/artiq/compiler/math_fns.py @@ -61,22 +61,6 @@ unary_fp_runtime_calls = [ ("cbrt", "cbrt"), ] -#: float -> float numpy.* math functions lowered to runtime calls. -unary_fp_runtime_calls = [ - ("tan", "tan"), - ("arcsin", "asin"), - ("arccos", "acos"), - ("arctan", "atan"), - ("sinh", "sinh"), - ("cosh", "cosh"), - ("tanh", "tanh"), - ("arcsinh", "asinh"), - ("arccosh", "acosh"), - ("arctanh", "atanh"), - ("expm1", "expm1"), - ("cbrt", "cbrt"), -] - scipy_special_unary_runtime_calls = [ ("erf", "erf"), ("erfc", "erfc"),