diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-09 12:16:14 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-09 12:16:14 +0300 |
commit | ef5684564e3074daf614846f30bfdd7f15f5254f (patch) | |
tree | 1b604adcf75bec0009c27d340e6ede2adb03b2ec /numpy/core/einsumfunc.py | |
parent | 23b0cf3a5925dbc1f0503fbdacdf8088372f4ab5 (diff) | |
download | numpy-ef5684564e3074daf614846f30bfdd7f15f5254f.tar.gz |
ENH: Spelling fixes
Diffstat (limited to 'numpy/core/einsumfunc.py')
-rw-r--r-- | numpy/core/einsumfunc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/einsumfunc.py b/numpy/core/einsumfunc.py index c54a4a263..e242363a4 100644 --- a/numpy/core/einsumfunc.py +++ b/numpy/core/einsumfunc.py @@ -46,7 +46,7 @@ def _find_contraction(positions, input_sets, output_set): """ Finds the contraction for a given set of input and output sets. - Paramaters + Parameters ---------- positions : iterable Integer positions of terms used in the contraction. @@ -108,7 +108,7 @@ def _optimal_path(input_sets, output_set, idx_dict, memory_limit): on ``memory_limit`` and returns the lowest cost path. This algorithm scales factorial with respect to the elements in the list ``input_sets``. - Paramaters + Parameters ---------- input_sets : list List of sets that represent the lhs side of the einsum subscript @@ -187,7 +187,7 @@ def _greedy_path(input_sets, output_set, idx_dict, memory_limit): ``memory_limit``. This algorithm scales cubically with respect to the number of elements in the list ``input_sets``. - Paramaters + Parameters ---------- input_sets : list List of sets that represent the lhs side of the einsum subscript |