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
/home/runner/work/sPyNNaker/sPyNNaker/spynnaker/pyNN/models/neural_projections/connectors/fixed_number_post_connector.py:127: DeprecationWarning: Converting np.integer or np.signedinteger to a dtype is deprecated. The current result is np.dtype(np.int_) which is not strictly correct. Note that the result depends on the system. To ensure stable results use may want to use np.int64 or np.int32.
[numpy.empty([0], dtype=integer)] * synapse_info.n_pre_neurons
/home/runner/work/sPyNNaker/sPyNNaker/spynnaker/pyNN/models/common/param_generator_data.py:116: DeprecationWarning: NumPy will stop allowing conversion of out-of-bound Python integers to integer arrays. The conversion of -1638400 to uint32 will fail in the future.
For the old behavior, usually:
np.array(value).astype(dtype)
will give the desired result (the cast overflows).
return numpy.array(
The text was updated successfully, but these errors were encountered:
/home/runner/work/sPyNNaker/sPyNNaker/spynnaker/pyNN/models/neural_projections/connectors/fixed_number_post_connector.py:127: DeprecationWarning: Converting
np.integer
ornp.signedinteger
to a dtype is deprecated. The current result isnp.dtype(np.int_)
which is not strictly correct. Note that the result depends on the system. To ensure stable results use may want to usenp.int64
ornp.int32
.[numpy.empty([0], dtype=integer)] * synapse_info.n_pre_neurons
/home/runner/work/sPyNNaker/sPyNNaker/spynnaker/pyNN/models/common/param_generator_data.py:116: DeprecationWarning: NumPy will stop allowing conversion of out-of-bound Python integers to integer arrays. The conversion of -1638400 to uint32 will fail in the future.
For the old behavior, usually:
np.array(value).astype(dtype)
will give the desired result (the cast overflows).
return numpy.array(
The text was updated successfully, but these errors were encountered: