Skip to content

Commit

Permalink
sneaky h
Browse files Browse the repository at this point in the history
  • Loading branch information
beckykd committed Nov 12, 2024
1 parent 59ed381 commit 8c24cd5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/guides/serverless-hamsim-template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
"tags": []
},
"source": [
"By now you've seen a basic example of how to get started writing, uploading, and running a program with Qiskit Serverless. If you haven't, start with [What is Qiskit Serverless?](/guides/serverless) for some background information first. The workloads you are building for your own use cases are likely not as simple as the examples previously shown. For example, you might need to carefully consider what domain-level inputs and outputs are relevant for your application, how to make sure your program can be reusable across a range of those inputs, and what kind of information you need returned during the execution of the job so you can better evaluate the progress of your workload. You might even want to incorporate a \"dry run\" mode that lets you test the impact of a set of particular inputs before sending the resulting circuits to hardware.\n",
"By now you've seen a basic example of how to get started writing, uploading, and running a program with Qiskit Serverless. If you haven't, start with [What is Qiskit Serverless?](/guides/serverless) for some background information first. \n",
"\n",
"The workloads you are building for your own use cases are likely not as simple as the examples previously shown. For example, you might need to carefully consider what domain-level inputs and outputs are relevant for your application, how to make sure your program can be reusable across a range of those inputs, and what kind of information you need returned during the execution of the job so you can better evaluate the progress of your workload. You might even want to incorporate a \"dry run\" mode that lets you test the impact of a set of particular inputs before sending the resulting circuits to hardware.\n",
"\n",
"A function template is an example of a realistic workload that uses a specific application domain to contextualize these aspects. It is meant to be a starting point for you to modify for your own needs so you don't have to start from scratch.\n",
"\n",
Expand Down Expand Up @@ -747,7 +749,7 @@
"source": [
"template = QiskitFunction(\n",
" title=\"function_template_hamsim\",\n",
" entrypoint=\"hfunction_template_hamsim.py\",\n",
" entrypoint=\"function_template_hamsim.py\",\n",
" working_dir=\"./source_files/\",\n",
" dependencies=[\n",
" \"qiskit-addon-utils==0.1.0\",\n",
Expand Down

0 comments on commit 8c24cd5

Please sign in to comment.