From 1a9880c0e71eac8dc3ae5ee9752300b1f2442fdd Mon Sep 17 00:00:00 2001 From: Aymen Alsaadi <27039262+AymenFJA@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:51:54 -0400 Subject: [PATCH] fix pilot desc. --- docs/source/tutorials/submission.ipynb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/source/tutorials/submission.ipynb b/docs/source/tutorials/submission.ipynb index a4271fb9a..4772b8706 100644 --- a/docs/source/tutorials/submission.ipynb +++ b/docs/source/tutorials/submission.ipynb @@ -60,7 +60,7 @@ "source": [ "import radical.pilot as rp\n", "\n", - "session = rp.Session()", + "session = rp.Session()\n", "\n", "pd_init = {'resource' : 'tacc.frontera',\n", " 'access_schema': 'ssh'\n", @@ -118,13 +118,11 @@ " 'access_schema': 'interactive',\n", " 'runtime' : 6000,\n", " 'exit_on_error': True,\n", - " 'project' : 'myproject',\n", - " 'queue' : 'normal',\n", " 'cores' : 4096,\n", " 'gpus' : 0\n", " }\n", "\n", - "pdesc = rp.PilotDescription(pd_init)", + "pdesc = rp.PilotDescription(pd_init)\n", "\n", "session.close(cleanup=True)" ] @@ -145,7 +143,7 @@ "3. Find on Frontera's [user guide](https://frontera-portal.tacc.utexas.edu/user-guide/running/#interactive-sessions-with-idev-and-srun) the command and the options required to submit an interactive job.\n", "4. Issue the appropriate command, in our case, assuming that your application will take no more than 10 hours to complete: \n", " ```\n", - " idev -p normal -N 74 -n 56 -m 600\n", + " idev -A myproject -p normal -N 74 -n 56 -m 600\n", " ```\n", "5. Once your job is scheduled and returns a shell, execute your RP application from that shell, e.g. with:\n", "\n",