-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/autoqasm
- Loading branch information
Showing
24 changed files
with
1,439 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You | ||
# may not use this file except in compliance with the License. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is | ||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF | ||
# ANY KIND, either express or implied. See the License for the specific | ||
# language governing permissions and limitations under the License. | ||
|
||
from braket.aws import AwsDevice | ||
from braket.circuits import Circuit, FreeParameter, Observable | ||
from braket.devices import Devices | ||
from braket.jobs import get_job_device_arn, hybrid_job | ||
from braket.jobs.metrics import log_metric | ||
|
||
|
||
@hybrid_job(device=Devices.Amazon.SV1, wait_until_complete=True) | ||
def run_hybrid_job(num_tasks=1): | ||
# declare AwsDevice within the hybrid job | ||
device = AwsDevice(get_job_device_arn()) | ||
|
||
# create a parametric circuit | ||
circ = Circuit() | ||
circ.rx(0, FreeParameter("theta")) | ||
circ.cnot(0, 1) | ||
circ.expectation(observable=Observable.X(), target=0) | ||
|
||
# initial parameter | ||
theta = 0.0 | ||
|
||
for i in range(num_tasks): | ||
# run task, specifying input parameter | ||
task = device.run(circ, shots=100, inputs={"theta": theta}) | ||
exp_val = task.result().values[0] | ||
|
||
# modify the parameter (e.g. gradient descent) | ||
theta += exp_val | ||
|
||
log_metric(metric_name="exp_val", value=exp_val, iteration_number=i) | ||
|
||
return {"final_theta": theta, "final_exp_val": exp_val} | ||
|
||
|
||
job = run_hybrid_job(num_tasks=5) | ||
print(job.result()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You | ||
# may not use this file except in compliance with the License. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is | ||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF | ||
# ANY KIND, either express or implied. See the License for the specific | ||
# language governing permissions and limitations under the License. | ||
|
||
|
||
from braket.aws import AwsDevice, AwsQuantumJob | ||
from braket.circuits import Circuit, FreeParameter, Observable | ||
from braket.devices import Devices | ||
from braket.jobs import get_job_device_arn, save_job_result | ||
from braket.jobs.metrics import log_metric | ||
|
||
|
||
def run_hybrid_job(num_tasks: int): | ||
# use the device specified in the hybrid job | ||
device = AwsDevice(get_job_device_arn()) | ||
|
||
# create a parametric circuit | ||
circ = Circuit() | ||
circ.rx(0, FreeParameter("theta")) | ||
circ.cnot(0, 1) | ||
circ.expectation(observable=Observable.X(), target=0) | ||
|
||
# initial parameter | ||
theta = 0.0 | ||
|
||
for i in range(num_tasks): | ||
# run task, specifying input parameter | ||
task = device.run(circ, shots=100, inputs={"theta": theta}) | ||
exp_val = task.result().values[0] | ||
|
||
# modify the parameter (e.g. gradient descent) | ||
theta += exp_val | ||
|
||
log_metric(metric_name="exp_val", value=exp_val, iteration_number=i) | ||
|
||
save_job_result({"final_theta": theta, "final_exp_val": exp_val}) | ||
|
||
|
||
if __name__ == "__main__": | ||
job = AwsQuantumJob.create( | ||
device=Devices.Amazon.SV1, # choose priority device | ||
source_module="hybrid_job_script.py", # specify file or directory with code to run | ||
entry_point="hybrid_job_script:run_hybrid_job", # specify function to run | ||
hyperparameters={"num_tasks": 5}, | ||
wait_until_complete=True, | ||
) | ||
print(job.result()) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ | |
"backoff", | ||
"boltons", | ||
"boto3>=1.28.53", | ||
"cloudpickle==2.2.1", | ||
"nest-asyncio", | ||
"networkx", | ||
"numpy", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.