File tree Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 47
47
"empty" ,
48
48
"eye" ,
49
49
"full" ,
50
- "linspace" ,
51
50
"ones" ,
52
51
"tril" ,
53
52
"triu" ,
@@ -245,38 +244,6 @@ def full(
245
244
return dpnp_array (array_obj .shape , buffer = array_obj , order = order )
246
245
247
246
248
- def linspace (
249
- start ,
250
- stop ,
251
- / ,
252
- num ,
253
- * ,
254
- dtype = None ,
255
- device = None ,
256
- usm_type = "device" ,
257
- sycl_queue = None ,
258
- endpoint = True ,
259
- ):
260
- """Validate input parameters before passing them into `dpctl.tensor` module"""
261
- dpu .validate_usm_type (usm_type , allow_none = False )
262
- sycl_queue_normalized = dpnp .get_normalized_queue_device (
263
- sycl_queue = sycl_queue , device = device
264
- )
265
-
266
- """Creates `dpnp_array` with evenly spaced numbers of specified interval."""
267
- array_obj = dpt .linspace (
268
- start ,
269
- stop ,
270
- num ,
271
- dtype = dtype ,
272
- usm_type = usm_type ,
273
- sycl_queue = sycl_queue_normalized ,
274
- endpoint = endpoint ,
275
- )
276
- dpnp .synchronize_array_data (array_obj )
277
- return dpnp_array (array_obj .shape , buffer = array_obj )
278
-
279
-
280
247
def ones (
281
248
shape ,
282
249
* ,
You can’t perform that action at this time.
0 commit comments