Browse Source

[Exp] Remove #SBATCH --exclusive in the fcsp exps.

v0.2.x
jajupmochi 4 years ago
parent
commit
c3c3921b20
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py
  2. +2
    -2
      gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp_space.py

+ 2
- 2
gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py View File

@@ -46,7 +46,7 @@ def get_job_script(kernel, dataset, fcsp):
script = r""" script = r"""
#!/bin/bash #!/bin/bash


#SBATCH --exclusive
##SBATCH --exclusive
#SBATCH --job-name="fcsp.""" + kernel + r"." + dataset + r"." + fcsp + r"""" #SBATCH --job-name="fcsp.""" + kernel + r"." + dataset + r"." + fcsp + r""""
#SBATCH --partition=tlong #SBATCH --partition=tlong
#SBATCH --mail-type=ALL #SBATCH --mail-type=ALL
@@ -142,4 +142,4 @@ if __name__ == '__main__':
# print(command) # print(command)
os.system(command) os.system(command)
# os.popen(command) # os.popen(command)
# output = stream.readlines()
# output = stream.readlines()

+ 2
- 2
gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp_space.py View File

@@ -123,7 +123,7 @@ def get_job_script(kernel, dataset, fcsp):
script = r""" script = r"""
#!/bin/bash #!/bin/bash


#SBATCH --exclusive
##SBATCH --exclusive
#SBATCH --job-name="fcsp.space.""" + kernel + r"." + dataset + r"." + fcsp + r"""" #SBATCH --job-name="fcsp.space.""" + kernel + r"." + dataset + r"." + fcsp + r""""
#SBATCH --partition=""" + (r"court" if kernel == 'ShortestPath' else r"court") + r""" #SBATCH --partition=""" + (r"court" if kernel == 'ShortestPath' else r"court") + r"""
#SBATCH --mail-type=ALL #SBATCH --mail-type=ALL
@@ -222,4 +222,4 @@ if __name__ == '__main__':
# print(command) # print(command)
os.system(command) os.system(command)
# os.popen(command) # os.popen(command)
# output = stream.readlines()
# output = stream.readlines()

Loading…
Cancel
Save