From e6213b727b89a618a787fbcb452b37f70fe657a8 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Thu, 1 Oct 2020 16:12:33 -0400 Subject: [PATCH] updates partitions for rusty --- Snakefile | 4 ++-- rusty.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Snakefile b/Snakefile index 2772795..a41e00d 100644 --- a/Snakefile +++ b/Snakefile @@ -579,7 +579,7 @@ rule create_metamers: params: cache_dir = lambda wildcards: op.join(config['DATA_DIR'], 'windows_cache'), time = lambda wildcards: {'V1': '12:00:00', 'RGC': '5-00:00:00'}[wildcards.model_name.split('_')[0]], - partition = lambda wildcards: {0: 'gen'}.get(int(wildcards.gpu), 'gpu') + partition = lambda wildcards: {0: 'ccn'}.get(int(wildcards.gpu), 'gpu') run: import foveated_metamers as met import contextlib @@ -664,7 +664,7 @@ rule continue_metamers: params: cache_dir = lambda wildcards: op.join(config['DATA_DIR'], 'windows_cache'), time = lambda wildcards: {'V1': '12:00:00', 'RGC': '5-00:00:00'}[wildcards.model_name.split('_')[0]], - partition = lambda wildcards: {0: 'gen'}.get(int(wildcards.gpu), 'gpu') + partition = lambda wildcards: {0: 'ccn'}.get(int(wildcards.gpu), 'gpu') run: import foveated_metamers as met import contextlib diff --git a/rusty.json b/rusty.json index 024aff5..0bb5214 100644 --- a/rusty.json +++ b/rusty.json @@ -9,7 +9,7 @@ "cpus_per_task": 1, "output": "{log}-%j", "error": "{log}-%j", - "partition": "gen" + "partition": "genx" }, "create_metamers": {