-
Notifications
You must be signed in to change notification settings - Fork 322
New issue
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
Update ArrayParameter Docs #2126
Update ArrayParameter Docs #2126
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2126 +/- ##
=======================================
Coverage 71.24% 71.24%
=======================================
Files 151 151
Lines 20150 20150
=======================================
Hits 14356 14356
Misses 5794 5794 |
@@ -150,7 +150,7 @@ | |||
"\n", | |||
"We have kept the documentation shown below of `ArrayParameter` for the legacy purpose.\n", | |||
"\n", | |||
"For actions that create a whole array of values at once. When you use it in a `Loop`, it makes a single `DataArray` with the array returned by `get` nested inside extra dimension(s) for the loop.\n", | |||
"For actions that create a whole array of values at once. When you use it in a `Loop`, it makes a single `DataArray` with the array returned by `get` nested inside extra dimension(s) for the loop. While storing this single `DataArray` in the database using `datasaver.add_result()` , be informed that it is stored as BLOB in one row of sqlite database. Where the BLOB in sqlite has a default max length limit set at 1 billion (1,000,000,000) bytes. \n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Akshita07 Loop
is a legacy feature of qcodes that does not use the sqlite database, so this "note" should not refer to the Loop.
(i'd also suggest to make it a separate paragraph so that it does not blend with the rest of the text)
@@ -150,7 +150,7 @@ | |||
"\n", | |||
"We have kept the documentation shown below of `ArrayParameter` for the legacy purpose.\n", | |||
"\n", | |||
"For actions that create a whole array of values at once. When you use it in a `Loop`, it makes a single `DataArray` with the array returned by `get` nested inside extra dimension(s) for the loop.\n", | |||
"For actions that create a whole array of values at once. When you use it in a `Loop`, it makes a single `DataArray` with the array returned by `get` nested inside extra dimension(s) for the loop. While storing this single `DataArray` in the database using `datasaver.add_result()` , be informed that it is stored as BLOB in one row of sqlite database. Where the BLOB in sqlite has a default max length limit set at 1 billion (1,000,000,000) bytes. \n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and we need the same/similar kind of note in the "paramtypes explained notebook".
5bb7193
to
b5459ee
Compare
Fixes #1440
Changes proposed in this pull request:
@astafan8