diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2021-05-06 09:55:27 -0500 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2021-05-06 09:55:27 -0500 |
commit | 3c4e5af75601afeee3492d0d019c6ffe44c86d41 (patch) | |
tree | c87b1ddb300c56b6370544b6275869af32d12b2a /doc/source | |
parent | 8eb83600f819b13370109496d48d0261aa289bbb (diff) | |
download | numpy-3c4e5af75601afeee3492d0d019c6ffe44c86d41.tar.gz |
DOC: Updates based on Marten's review
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/ufuncs.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index b2906bcdf..27ebf8d1b 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -448,8 +448,9 @@ advanced usage and will not typically be used. indicating the input and output types of a ufunc. This argument allows the user to specify exact DTypes to be used for the - calculation. Casting will be used as necessary. The input DType - is not considered unless ``signature`` is ``None`` for that input. + calculation. Casting will be used as necessary. The actual DType of the + input arrays is not considered unless ``signature`` is ``None`` for + that array. When all DTypes are fixed, a specific loop is chosen or an error raised if no matching loop exists. |