Skip to content

Commit 3ee8aee

Browse files
author
hluo
committed
removing time.sleep and extra
1 parent 432af7c commit 3ee8aee

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

python_submit/python_submit.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,11 @@ def tryJob(jobPrefix, someIndex, queue):
7474

7575
def main():
7676
import sys
77-
import time
7877
jobNamePrefix = sys.argv[1]
7978
queue = sys.argv[2]
80-
# sliceList = [2,3,4,5,6,7,8,9,10,11,12,16,24,32,40,48,56,64,72,73,74,75]
81-
sliceList = [9,10,11,12,16,24,32,40,48,56,64,72,73,74,75]
82-
# sliceList = [0, 1]
79+
sliceList = [0,1,2,3,4,5,6,7,8,9,10,11,12,16,24,32,40,48,56,64,72,73,74,75]
8380
jobList =[]
8481
for slicei in sliceList:
85-
time.sleep(2)
8682
jobList.append(tryJob(jobNamePrefix, slicei, queue))
8783

8884
with open(jobNamePrefix, 'w') as jobListFile:

0 commit comments

Comments
 (0)