|
304 | 304 | _greater_docstring_ = """ |
305 | 305 | greater(x1, x2, out=None, order='K') |
306 | 306 | Computes the greater-than test results for each element `x1_i` of |
307 | | -the input array `x1` the respective element `x2_i` of the input array `x2`. |
| 307 | +the input array `x1` with the respective element `x2_i` of the input array `x2`. |
308 | 308 | Args: |
309 | 309 | x1 (usm_ndarray): |
310 | 310 | First input array, expected to have numeric data type. |
|
331 | 331 | _greater_equal_docstring_ = """ |
332 | 332 | greater_equal(x1, x2, out=None, order='K') |
333 | 333 | Computes the greater-than or equal-to test results for each element `x1_i` of |
334 | | -the input array `x1` the respective element `x2_i` of the input array `x2`. |
| 334 | +the input array `x1` with the respective element `x2_i` of the input array `x2`. |
335 | 335 | Args: |
336 | 336 | x1 (usm_ndarray): |
337 | 337 | First input array, expected to have numeric data type. |
|
465 | 465 | less(x1, x2, out=None, order='K') |
466 | 466 |
|
467 | 467 | Computes the less-than test results for each element `x1_i` of |
468 | | -the input array `x1` the respective element `x2_i` of the input array `x2`. |
| 468 | +the input array `x1` with the respective element `x2_i` of the input array `x2`. |
469 | 469 |
|
470 | 470 | Args: |
471 | 471 | x1 (usm_ndarray): |
|
493 | 493 | _less_equal_docstring_ = """ |
494 | 494 | less_equal(x1, x2, out=None, order='K') |
495 | 495 | Computes the less-than or equal-to test results for each element `x1_i` of |
496 | | -the input array `x1` the respective element `x2_i` of the input array `x2`. |
| 496 | +the input array `x1` with the respective element `x2_i` of the input array `x2`. |
497 | 497 | Args: |
498 | 498 | x1 (usm_ndarray): |
499 | 499 | First input array, expected to have numeric data type. |
|
0 commit comments