Skip to content

Commit 1c18270

Browse files
authored
Merge branch 'master' into implemented_floor_divide
2 parents 06eb00a + 1596a13 commit 1c18270

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,17 +94,23 @@
9494
from ._elementwise_funcs import (
9595
abs,
9696
add,
97+
conj,
9798
cos,
9899
divide,
99100
equal,
101+
exp,
100102
expm1,
101103
floor_divide,
104+
imag,
102105
isfinite,
103106
isinf,
104107
isnan,
105108
log,
106109
log1p,
107110
multiply,
111+
proj,
112+
real,
113+
sin,
108114
sqrt,
109115
subtract,
110116
)
@@ -187,13 +193,19 @@
187193
"inf",
188194
"abs",
189195
"add",
196+
"conj",
190197
"cos",
198+
"exp",
191199
"expm1",
200+
"imag",
192201
"isinf",
193202
"isnan",
194203
"isfinite",
195204
"log",
196205
"log1p",
206+
"proj",
207+
"real",
208+
"sin",
197209
"sqrt",
198210
"divide",
199211
"multiply",

0 commit comments

Comments
 (0)