Skip to content

Commit 1596a13

Browse files
authored
Merge pull request #1216 from IntelPython/feature/elementwise-functions-sin-exp
impl_elementwise_functions_exp_sin
2 parents 1adbaa0 + 18d1641 commit 1596a13

File tree

12 files changed

+2132
-57
lines changed

12 files changed

+2132
-57
lines changed

dpctl/tensor/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,22 @@
9494
from ._elementwise_funcs import (
9595
abs,
9696
add,
97+
conj,
9798
cos,
9899
divide,
99100
equal,
101+
exp,
100102
expm1,
103+
imag,
101104
isfinite,
102105
isinf,
103106
isnan,
104107
log,
105108
log1p,
106109
multiply,
110+
proj,
111+
real,
112+
sin,
107113
sqrt,
108114
subtract,
109115
)
@@ -186,13 +192,19 @@
186192
"inf",
187193
"abs",
188194
"add",
195+
"conj",
189196
"cos",
197+
"exp",
190198
"expm1",
199+
"imag",
191200
"isinf",
192201
"isnan",
193202
"isfinite",
194203
"log",
195204
"log1p",
205+
"proj",
206+
"real",
207+
"sin",
196208
"sqrt",
197209
"divide",
198210
"multiply",

0 commit comments

Comments
 (0)