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
When retrieving results, a ControllerJobExecutionResults is returned. This type is generated from our protobuf schema, which doesn't offer an ergonomic API for end users who want to do things like linear algebra on the data. For platforms like Python, this data wrangling can be a drag on performance as well.
To make this easier, the SDK should offer a method for transforming the protobuf derived struct into an ndarray. This format would pack all readout values into a single ndarray, and return a mapping of memory regions into views of that ndarray. The ordering of memory regions should be deterministic.
The text was updated successfully, but these errors were encountered:
When retrieving results, a
ControllerJobExecutionResults
is returned. This type is generated from our protobuf schema, which doesn't offer an ergonomic API for end users who want to do things like linear algebra on the data. For platforms like Python, this data wrangling can be a drag on performance as well.To make this easier, the SDK should offer a method for transforming the protobuf derived struct into an ndarray. This format would pack all readout values into a single ndarray, and return a mapping of memory regions into views of that ndarray. The ordering of memory regions should be deterministic.
The text was updated successfully, but these errors were encountered: