diff --git a/submit.sub b/submit.sub
deleted file mode 100644
index 2377c2bcd463581faf225d8182e38fb3a3cb923e..0000000000000000000000000000000000000000
--- a/submit.sub
+++ /dev/null
@@ -1,40 +0,0 @@
-####################
-#
-# 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