You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a result my PyCharm environment does not see functions and their signatures in codes like this import dpnp as np np.random.seed(111)
Numpy behaves differently, and the following code is fine import numpy as np np.random.seed(111)
Since dpnp goal is to be a drop-in replacement for Numpy, this behavior need to be consistent
The text was updated successfully, but these errors were encountered:
As a result my PyCharm environment does not see functions and their signatures in codes like this
import dpnp as np np.random.seed(111)
Numpy behaves differently, and the following code is fine
import numpy as np np.random.seed(111)
Since dpnp goal is to be a drop-in replacement for Numpy, this behavior need to be consistent
The text was updated successfully, but these errors were encountered: