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
The original script the user used to report this bug uses things like u = np.array([1,0,0]) which creates a np.int64 array and is converted into a Matlab int array which does not work with most Matlab methods which expect double. The solution is to do a (possibly expensive) conversion to double.
Cluster configuration - on the DAaaS system where this is run, the default configuration is to run with a Herbert cluster but this doesn't work. Unfortunately, as explained in Herbert #418 the cluster cannot be turned off...
The text was updated successfully, but these errors were encountered:
* Modify parallelization to use Horace parallel_config
* Add a python patch routine and store diffs wrt 3.6.2
* Add parallelization documentation
* Fix input pars to `disp2sqw_plot` bug #9
* Add auto conv to double of small np.ndarrays #11
* Fix spyder deletion of imports bug #12
* Fix getdoc error string in Spyder/IPython help #12
* Modify parallelization to use Horace parallel_config
* Add a python patch routine and store diffs wrt 3.6.2
* Add parallelization documentation
* Fix input pars to `disp2sqw_plot` bug #9
* Add auto conv to double of small np.ndarrays #11
* Fix spyder deletion of imports bug #12
* Fix getdoc error string in Spyder/IPython help #12
gen_sqw
is not working on pace-python.So there are two related problems to this.
u = np.array([1,0,0])
which creates anp.int64
array and is converted into a Matlabint
array which does not work with most Matlab methods which expectdouble
. The solution is to do a (possibly expensive) conversion to double.Herbert
cluster but this doesn't work. Unfortunately, as explained in Herbert #418 the cluster cannot be turned off...The text was updated successfully, but these errors were encountered: