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
We cannot insert numpy types via the data saver. To reproduce:
from qcodes import Parameter from qcodes.dataset.measurements import Measurement from qcodes.dataset.experiment_container import new_experiment exp = new_experiment("name", "sample") x = Parameter("x", set_cmd=None, get_cmd=None) meas = Measurement() meas.register_parameter(x) with meas.run() as datasaver: datasaver.add_result((x, np.float16(1.0))) # Fails with np.int8, np.int16, etc as well.
The text was updated successfully, but these errors were encountered:
sohailc
No branches or pull requests
We cannot insert numpy types via the data saver. To reproduce:
The text was updated successfully, but these errors were encountered: