Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion docs/tutorials/google/colab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@
"processor_id = \"\" #@param {type:\"string\"}\n",
"\n",
"from cirq_google.engine.qcs_notebook import get_qcs_objects_for_notebook\n",
"qcs_objects = get_qcs_objects_for_notebook(project_id, processor_id)\n",
"# For real engine instances, delete 'virtual=True' below.\n",
"qcs_objects = get_qcs_objects_for_notebook(project_id, processor_id, virtual=True)\n",
"engine = qcs_objects.engine\n",
"processor_id = qcs_objects.processor_id"
]
Expand Down
3 changes: 2 additions & 1 deletion docs/tutorials/google/start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@
"processor_id = \"\" #@param {type:\"string\"}\n",
"\n",
"from cirq_google.engine.qcs_notebook import get_qcs_objects_for_notebook\n",
"qcs_objects = get_qcs_objects_for_notebook(project_id, processor_id)\n",
"# For real engine instances, delete 'virtual=True' below.\n",
"qcs_objects = get_qcs_objects_for_notebook(project_id, processor_id, virtual=True)\n",
"\n",
"project_id = qcs_objects.project_id\n",
"processor_id = qcs_objects.processor_id\n",
Expand Down