|
117 | 117 | conj(x, out=None, order='K')
|
118 | 118 |
|
119 | 119 | Computes conjugate of each element `x_i` for input array `x`.
|
| 120 | +<<<<<<< HEAD |
120 | 121 |
|
121 | 122 | Args:
|
122 | 123 | x (usm_ndarray):
|
|
131 | 132 | usm_narray:
|
132 | 133 | An array containing the element-wise conjugate values. The data type
|
133 | 134 | of the returned array is determined by the Type Promotion Rules.
|
| 135 | +======= |
| 136 | +>>>>>>> 81b71d23222f799c7e6a06bacd546204121feb7d |
134 | 137 | """
|
135 | 138 |
|
136 | 139 | conj = UnaryElementwiseFunc(
|
|
224 | 227 | _exp_docstring = """
|
225 | 228 | exp(x, out=None, order='K')
|
226 | 229 |
|
| 230 | +<<<<<<< HEAD |
227 | 231 | Computes exponential for each element `x_i` of input array `x`.
|
228 | 232 |
|
229 | 233 | Args:
|
|
240 | 244 | An array containing the element-wise exponential of x.
|
241 | 245 | The data type of the returned array is determined by
|
242 | 246 | the Type Promotion Rules.
|
| 247 | +======= |
| 248 | +Computes exponential for each element `x_i` for input array `x`. |
| 249 | +>>>>>>> 81b71d23222f799c7e6a06bacd546204121feb7d |
243 | 250 | """
|
244 | 251 |
|
245 | 252 | exp = UnaryElementwiseFunc("exp", ti._exp_result_type, ti._exp, _exp_docstring)
|
|
283 | 290 | imag(x, out=None, order='K')
|
284 | 291 |
|
285 | 292 | Computes imaginary part of each element `x_i` for input array `x`.
|
| 293 | +<<<<<<< HEAD |
286 | 294 |
|
287 | 295 | Args:
|
288 | 296 | x (usm_ndarray):
|
|
298 | 306 | An array containing the element-wise imaginary component of input.
|
299 | 307 | The data type of the returned array is determined
|
300 | 308 | by the Type Promotion Rules.
|
| 309 | +======= |
| 310 | +>>>>>>> 81b71d23222f799c7e6a06bacd546204121feb7d |
301 | 311 | """
|
302 | 312 |
|
303 | 313 | imag = UnaryElementwiseFunc(
|
|
518 | 528 | real(x, out=None, order='K')
|
519 | 529 |
|
520 | 530 | Computes real part of each element `x_i` for input array `x`.
|
| 531 | +<<<<<<< HEAD |
521 | 532 |
|
522 | 533 | Args:
|
523 | 534 | x (usm_ndarray):
|
|
532 | 543 | usm_narray:
|
533 | 544 | An array containing the element-wise real component of input. The data
|
534 | 545 | type of the returned array is determined by the Type Promotion Rules.
|
| 546 | +======= |
| 547 | +>>>>>>> 81b71d23222f799c7e6a06bacd546204121feb7d |
535 | 548 | """
|
536 | 549 |
|
537 | 550 | real = UnaryElementwiseFunc(
|
|
551 | 564 | _sin_docstring = """
|
552 | 565 | sin(x, out=None, order='K')
|
553 | 566 |
|
| 567 | +<<<<<<< HEAD |
554 | 568 | Computes sine for each element `x_i` of input array `x`.
|
555 | 569 |
|
556 | 570 | Args:
|
|
566 | 580 | usm_narray:
|
567 | 581 | An array containing the element-wise sine. The data type of the
|
568 | 582 | returned array is determined by the Type Promotion Rules.
|
| 583 | +======= |
| 584 | +Computes sin for each element `x_i` for input array `x`. |
| 585 | +>>>>>>> 81b71d23222f799c7e6a06bacd546204121feb7d |
569 | 586 | """
|
570 | 587 |
|
571 | 588 | sin = UnaryElementwiseFunc("sin", ti._sin_result_type, ti._sin, _sin_docstring)
|
|
0 commit comments