Skip to content
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

Remove oqc #148

Merged
merged 4 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 10 additions & 13 deletions notebooks/textbook/Bells_Inequality.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Run on a QPU\n",
"# Run on a QPU \n",
"\n",
"To run Bell's inequality on a QPU, we replace the LocalSimulator with an AwsDevice. \n",
"The cost to run this experiment is \\\\$0.3 per task and \\\\$0.00035 per shot on the Oxford Quantum Circuits Lucy device. \n",
"Since we have three circuits of 1000 shots each, that totals \\$1.95 USD."
"To run Bell's inequality on a QPU, we replace the LocalSimulator with an AwsDevice. The cost to run this experiment is \\\\$0.3 per task and \\\\$0.00145 per shot on the IQM Garnet device. Since we have three circuits of 1000 shots each, that totals \\$5.25 USD."
]
},
{
Expand All @@ -168,12 +166,11 @@
"metadata": {},
"outputs": [],
"source": [
"# # Uncomment to run on a QPU\n",
"# from braket.aws import AwsDevice\n",
"\n",
"# oqc_lucy = AwsDevice(\"arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy\")\n",
"# oqc_tasks = run_bell_inequality([circAB, circAC, circBC], oqc_lucy, shots=1000)\n",
"# results, pAB, pAC, pBC = get_bell_inequality_results(oqc_tasks)"
"# # Uncomment to run on a QPU \n",
"# from braket.aws import AwsDevice \n",
"# iqm_garnet = AwsDevice(\"arn:aws:braket:eu-north-1::device/qpu/iqm/Garnet\") \n",
"# iqm_tasks = run_bell_inequality([circAB, circAC, circBC], iqm_garnet, shots=1000) \n",
"# results, pAB, pAC, pBC = get_bell_inequality_results(iqm_tasks)\n"
]
},
{
Expand All @@ -193,9 +190,9 @@
"output_type": "stream",
"text": [
"Task Summary\n",
"{'arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy': {'shots': 3000, 'tasks': {'COMPLETED': 3}}} \n",
"{'arn:aws:braket:eu-north-1::device/qpu/iqm/Garnet': {'shots': 3000, 'tasks': {'COMPLETED': 3}}}\n",
"\n",
"Estimated cost to run this example: 1.95 USD\n"
"Estimated cost to run this example: 5.25 USD\n"
]
}
],
Expand Down Expand Up @@ -229,7 +226,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.5"
"version": "3.11.4"
},
"vscode": {
"interpreter": {
Expand Down
6 changes: 3 additions & 3 deletions notebooks/textbook/CHSH_Inequality.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
"To run CHSH inequality on a QPU, we replace the LocalSimulator with an AwsDevice. \n",
"To reduce the cost, we run the the experiment only the defualt angles which gives the maximum CHSH inequality value.\n",
"\n",
"The cost to run this experiment is \\\\$0.3 per task and \\\\$0.00035 per shot on the Oxford Quantum Circuits Lucy device. Since we have four circuits of 1000 shots each, the total cost is \\$2.60 USD."
"The cost to run this experiment is \\\\$0.3 per task and \\\\$0.00145 per shot on the IQM Garnet device. Since we have four circuits of 1000 shots each, the total cost is \\$7 USD."
]
},
{
Expand All @@ -393,7 +393,7 @@
"source": [
"# # Uncomment the following to run on QPU\n",
"# from braket.aws import AwsDevice\n",
"# device = AwsDevice(\"arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy\")\n",
"# device = AwsDevice(\"arn:aws:braket:eu-north-1::device/qpu/iqm/Garnet\")\n",
"# circuits = create_chsh_inequality_circuits()\n",
"# tasks = run_chsh_inequality(circuits, device, shots=1_000)\n",
"# chsh_value, results, E_a1b1, E_a1b2, E_a2b1, E_a2b2 = get_chsh_results(tasks)"
Expand Down Expand Up @@ -449,7 +449,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.5"
"version": "3.11.4"
},
"vscode": {
"interpreter": {
Expand Down
9 changes: 5 additions & 4 deletions notebooks/textbook/Quantum_Fourier_Transform.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@
"\n",
"tracker = Tracker().start()\n",
"\n",
"# device = AwsDevice(\"arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy\") # OQC Lucy"
"# device = AwsDevice(\"arn:aws:braket:eu-north-1::device/qpu/iqm/Garnet\") # IQM Garnet"
]
},
{
Expand Down Expand Up @@ -514,9 +514,9 @@
"output_type": "stream",
"text": [
"Task Summary\n",
"{'arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy': {'shots': 3000, 'tasks': {'COMPLETED': 3}}} \n",
"{'arn:aws:braket:eu-north-1::device/qpu/iqm/Garnet': {'shots': 3000, 'tasks': {'COMPLETED': 3}}}\n",
"\n",
"Estimated cost to run this example: 1.95 USD\n"
"Estimated cost to run this example: 5.25 USD\n"
]
}
],
Expand All @@ -528,6 +528,7 @@
},
{
"cell_type": "markdown",
"id": "ef318356",
"metadata": {},
"source": [
"Note: Charges shown are estimates based on your Amazon Braket simulator and quantum processing unit (QPU) task usage. Estimated charges shown may differ from your actual charges. Estimated charges do not factor in any discounts or credits, and you may experience additional charges based on your use of other services such as Amazon Elastic Compute Cloud (Amazon EC2)."
Expand All @@ -550,7 +551,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.11.4"
}
},
"nbformat": 4,
Expand Down
3 changes: 0 additions & 3 deletions test/integ_tests/default_data/default_results.json
Original file line number Diff line number Diff line change
Expand Up @@ -1057,9 +1057,6 @@
"rigettiMetadata": {
"compiledProgram": "DECLARE ro BIT[2];"
},
"oqcMetadata": {
"compiledProgram": "DECLARE ro BIT[2];"
},
"simulatorMetadata": {
"braketSchemaHeader": {
"name": "braket.task_result.simulator_metadata",
Expand Down