Skip to content

Commit

Permalink
Merge pull request #3240 from radical-cybertools/fix/submssion_tutorial
Browse files Browse the repository at this point in the history
Remove `queue` and `project` from interactive submission tutorial
  • Loading branch information
AymenFJA authored Oct 18, 2024
2 parents 5e9e0c2 + 1a9880c commit ced5d92
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/source/tutorials/submission.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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)"
]
Expand All @@ -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",
Expand Down

0 comments on commit ced5d92

Please sign in to comment.