Browse Source

limit clairs mem

Thomas 1 tuần trước cách đây
mục cha
commit
95062589e6
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/callers/clairs.rs

+ 2 - 2
src/callers/clairs.rs

@@ -368,7 +368,7 @@ impl SlurmRunner for ClairS {
         SlurmParams {
             job_name: Some(format!("clairs_{}", self.id)),
             cpus_per_task: Some(self.config.clairs_threads as u32),
-            mem: Some("80G".into()),
+            mem: Some("60G".into()),
             partition: Some("shortq".into()),
             gres: None,
         }
@@ -381,7 +381,7 @@ impl SbatchRunner for ClairS {
         SlurmParams {
             job_name: Some(format!("clairs_{}", self.id)),
             cpus_per_task: Some(self.config.clairs_threads as u32),
-            mem: Some("70G".into()),
+            mem: Some("60G".into()),
             partition: Some("shortq".into()),
             gres: None,
         }