| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import sys |
||
| 6 | class VerifyCedarCluster(VerifySlurmCluster): |
||
| 7 | |||
| 8 | WALLTIME = 60 |
||
| 9 | CORES_PER_NODE = 24 |
||
| 10 | GPUS_PER_NODE = 4 |
||
| 11 | |||
| 12 | def get_arguments(self, **kwargs): |
||
| 13 | |||
| 14 | set_defaults( |
||
| 15 | kwargs, |
||
| 16 | coresPerCommand=1, |
||
| 17 | gpusPerCommand=0, |
||
| 18 | walltime=self.WALLTIME, |
||
| 19 | coresPerNode=self.CORES_PER_NODE, |
||
| 20 | gpusPerNode=self.GPUS_PER_NODE) |
||
| 21 | |||
| 22 | return kwargs |
||
| 23 | |||
| 30 |