Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cross-device compute-follow-data issue for dpnp.geomspace #2352

Open
vtavana opened this issue Feb 28, 2025 · 0 comments
Open

cross-device compute-follow-data issue for dpnp.geomspace #2352

vtavana opened this issue Feb 28, 2025 · 0 comments

Comments

@vtavana
Copy link
Collaborator

vtavana commented Feb 28, 2025

The following example works for dpnp.linspace and dpnp.logspace but not for dpnp.geomspace.

>>> import dpnp
>>> x=dpnp.array([2,3,4,5], device="gpu")
>>> dpnp.linspace(1, x[2:4], 4, device="cpu")
# array([[1.        , 1.        ],
#      [2.        , 2.33333333],
#      [3.        , 3.66666667],
#      [4.        , 5.        ]])

>>> dpnp.logspace(1, x[2:4], 4, device="cpu")
# array([[1.00000000e+01, 1.00000000e+01],
#      [1.00000000e+02, 2.15443469e+02],
#      [1.00000000e+03, 4.64158883e+03],
#      [1.00000000e+04, 1.00000000e+05]])

>>> dpnp.geomspace(1, x[2:4], 4, device="cpu")
File ~/dpnp/dpnp_algo/dpnp_arraycreation.py:102, in dpnp_geomspace(start, stop, num, dtype, device, usm_type, sycl_queue, endpoint, axis)
    99         stop[all_imag] = stop[all_imag].imag
   100         out_sign[all_imag] = 1j
--> 102 both_negative = (dpt.sign(start) == -1) & (dpt.sign(stop) == -1)
   103 if dpnp.any(both_negative):
   104     dpt.negative(start[both_negative], out=start[both_negative])
ExecutionPlacementError: Execution placement can not be unambiguously inferred from input arguments.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant