We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dpnp.geomspace
The following example works for dpnp.linspace and dpnp.logspace but not for dpnp.geomspace.
dpnp.linspace
dpnp.logspace
>>> 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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following example works for
dpnp.linspace
anddpnp.logspace
but not fordpnp.geomspace
.The text was updated successfully, but these errors were encountered: