Skip to content
Snippets Groups Projects
Commit f59c512b authored by Will Morris's avatar Will Morris
Browse files

Changed tag name for runner and setup new runner for macosx

parent 8f21f81a
No related branches found
No related tags found
No related merge requests found
Pipeline #5587 failed
...@@ -6,6 +6,8 @@ compile-mandelbrot: ...@@ -6,6 +6,8 @@ compile-mandelbrot:
stage: compile stage: compile
script: script:
- gcc mandelbrot.c - gcc mandelbrot.c
tags:
- steve-jobs
submit-mandelbrot: submit-mandelbrot:
stage: submit stage: submit
...@@ -16,3 +18,5 @@ submit-mandelbrot: ...@@ -16,3 +18,5 @@ submit-mandelbrot:
artifacts: artifacts:
paths: paths:
- new1.ppm - new1.ppm
tags:
- steve-jobs
...@@ -16,8 +16,8 @@ int main() ...@@ -16,8 +16,8 @@ int main()
{ {
/* screen ( integer) coordinate */ /* screen ( integer) coordinate */
int iX,iY; int iX,iY;
const int iXmax = 8000; const int iXmax = 200;
const int iYmax = 8000; const int iYmax = 200;
/* world ( double) coordinate = parameter plane*/ /* world ( double) coordinate = parameter plane*/
double Cx,Cy; double Cx,Cy;
const double CxMin=-2.5; const double CxMin=-2.5;
......
####################
#
# Example Job for HTCondor
#
####################
# --------------------------------------------
# Executable and its arguments
executable = myexe
arguments = -a1 one -a2 two
# ---------------------------------------------------
# Docker: Executable might be stated in docker image so can be omitted
# If specified, overrides the one stated in docker image
# Need to specify the docker image to use
universe = docker
docker_image = nvidia/cuda
# -------------------------------------------------
# Input, Output and Log files
log = $(cluster).$(process).myexe.log
input = $(cluster).$(process).myexe.in
output = $(cluster).$(process).myexe.out
error = $(cluster).$(process).myexe.error
should_transfer_files = YES
# -------------------------------------
# Requirements for the Job
requirements = ( HasStornext == true ) && ( CUDACapability >= 5 )
# --------------------------------------
# Resource requirements
request_GPUs = 1
request_CPUs = 2
request_memory = 4096
# -----------------------------------
# Queue commands
queue 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment