Skip to content

Commit c13aa5a

Browse files
authored
enable maya 2023 (#133)
1 parent dc51d03 commit c13aa5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/models/maya_script.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def cluster
2626
end
2727

2828
def available_versions
29-
['2020', '2022']
29+
['2020', '2022', '2023']
3030
end
3131

3232
def job_name

jobs/video_jobs/maya_submit.sh.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ echo "starting at $(date)"
5050
module purge
5151
#load the singularity and ACCAD modules and record the loaded module list
5252
module use /usr/local/share/lmodfiles/project/osc
53-
module load singularity/current
5453
module load ruby
5554

5655
<%
@@ -89,7 +88,8 @@ END_FRAMES=(shift <%= task_end_frames.join(' ')%>)
8988
export TASK_START_FRAME=${START_FRAMES[$SLURM_ARRAY_TASK_ID]}
9089
export TASK_END_FRAME=${END_FRAMES[$SLURM_ARRAY_TASK_ID]}
9190

92-
CMD=(singularity exec -B $BIND_DIRS $MAYA_IMG Render)
91+
ulimit -c 0
92+
CMD=(apptainer exec -B $BIND_DIRS $MAYA_IMG Render)
9393
CMD+=(-r $RENDERER $SKIP_EXISTING ${EXTRA_ARGS} -proj $PRJ_DIR -s $TASK_START_FRAME -e $TASK_END_FRAME)
9494

9595
echo "executing: ${CMD[@]} <%= Shellwords.escape(file) %>"

0 commit comments

Comments
 (0)