@@ -309,7 +309,6 @@ def ol_dpnp_zeros(
309309 shape ,
310310 dtype = None ,
311311 order = "C" ,
312- like = None ,
313312 device = None ,
314313 usm_type = "device" ,
315314 sycl_queue = None ,
@@ -327,12 +326,6 @@ def ol_dpnp_zeros(
327326 Default: None.
328327 order (str, optional): memory layout for the array "C" or "F".
329328 Default: "C".
330- like (numba.core.types.npytypes.Array, optional): A type for
331- reference object to allow the creation of arrays which are not
332- `NumPy` arrays. If an array-like passed in as `like` supports the
333- `__array_function__` protocol, the result will be defined by it.
334- In this case, it ensures the creation of an array object
335- compatible with that passed in via this argument.
336329 device (numba.core.types.misc.StringLiteral, optional): array API
337330 concept of device where the output array is created. `device`
338331 can be `None`, a oneAPI filter selector string, an instance of
@@ -376,7 +369,6 @@ def impl(
376369 shape ,
377370 dtype = None ,
378371 order = "C" ,
379- like = None ,
380372 device = None ,
381373 usm_type = "device" ,
382374 sycl_queue = None ,
@@ -385,7 +377,6 @@ def impl(
385377 shape ,
386378 _dtype ,
387379 order ,
388- like ,
389380 _device ,
390381 _usm_type ,
391382 sycl_queue ,
@@ -407,7 +398,6 @@ def ol_dpnp_ones(
407398 shape ,
408399 dtype = None ,
409400 order = "C" ,
410- like = None ,
411401 device = None ,
412402 usm_type = "device" ,
413403 sycl_queue = None ,
@@ -425,12 +415,6 @@ def ol_dpnp_ones(
425415 Default: None.
426416 order (str, optional): memory layout for the array "C" or "F".
427417 Default: "C".
428- like (numba.core.types.npytypes.Array, optional): A type for
429- reference object to allow the creation of arrays which are not
430- `NumPy` arrays. If an array-like passed in as `like` supports the
431- `__array_function__` protocol, the result will be defined by it.
432- In this case, it ensures the creation of an array object
433- compatible with that passed in via this argument.
434418 device (numba.core.types.misc.StringLiteral, optional): array API
435419 concept of device where the output array is created. `device`
436420 can be `None`, a oneAPI filter selector string, an instance of
@@ -474,7 +458,6 @@ def impl(
474458 shape ,
475459 dtype = None ,
476460 order = "C" ,
477- like = None ,
478461 device = None ,
479462 usm_type = "device" ,
480463 sycl_queue = None ,
@@ -483,7 +466,6 @@ def impl(
483466 shape ,
484467 _dtype ,
485468 order ,
486- like ,
487469 _device ,
488470 _usm_type ,
489471 sycl_queue ,
0 commit comments