Skip to content
Snippets Groups Projects
Commit 28816d56 authored by zachjweiner's avatar zachjweiner
Browse files

Fix copysign mangling

parent d97a385d
No related branches found
No related tags found
Loading
...@@ -436,7 +436,7 @@ def c_math_mangler(target, name, arg_dtypes, modify_name=True): ...@@ -436,7 +436,7 @@ def c_math_mangler(target, name, arg_dtypes, modify_name=True):
arg_dtypes=arg_dtypes) arg_dtypes=arg_dtypes)
# binary functions # binary functions
if (name in ["fmax", "fmin"] if (name in ["fmax", "fmin", "copysign"]
and len(arg_dtypes) == 2): and len(arg_dtypes) == 2):
dtype = np.find_common_type( dtype = np.find_common_type(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment