Aaron Berdy

Results 12 comments of Aaron Berdy

@born-2learn Awesome! Yes, exactly. We want to add the following functionality: ``` device = LocalSimulator() num_tasks = 10 circuits = [bell for _ in range(num_tasks)] batch = device.run_batch(circuits, shots=100) for...

Integ tests passed (with warning about Device offline) ``` test/notebook_tests/test_notebooks.py::test_ipynb[examples/advanced_circuits_algorithms/Randomness-examples/advanced_circuits_algorithms/Randomness/Randomness_Generation.ipynb] /Users/berdy/Desktop/braket/amazon-braket-examples/test/notebook_tests/test_notebooks.py:120: UserWarning: Errors found in examples/advanced_circuits_algorithms/Randomness/Randomness_Generation.ipynb ['An error occurred (DeviceOfflineException) when calling the CreateQuantumTask operation: Device is not available. Status...

> Can we also validate whether this affect the docs in [SDK](https://github.com/aws/amazon-braket-sdk-python/tree/main/doc) too; unfortunately, everything there is hardcoded. And also in the [developer docs](https://docs.aws.amazon.com/braket/latest/developerguide/what-is-braket.html) Adding - it is probably worth...

Thanks for raising! It looks like a lot of the latency is coming from the initialization of AwsDevice objects, specifically around the `get_device` service call for some of the annealing...

Hi, we currently do not have a `cry` gate. Depending on your use case, you may pass a custom `unitary` gate with the corresponding matrix. Additionally, you may be interested...

Thanks for this! Closing due to overlap with [Noise_models_on_Rigetti.ipynb](https://github.com/amazon-braket/amazon-braket-examples/blob/main/examples/braket_features/Noise_models/Noise_models_on_Rigetti.ipynb)

Thanks for the contribution! This change has gone stale with our current notebooks so we are closing this PR

Thanks for the contribution! If there are key gaps in the SDK circuit class, please raise these as feature requests and we will prioritize integrating them natively into the SDK.

I wouldn't label this as a fix, as the previous implementation fit the spec. This is an extension of functionality

Hi, thanks for raising! As per the OpenQASM spec [here](https://openqasm.com/language/types.html#qubits), the qubit register size must be a [compile-time constant](https://openqasm.com/language/types.html#const-expression) (an integer literal or `const` variable of an integer type). In...