From 9e477a2313f9dbd0e0b60a37b37868c4b228421b Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 5 Nov 2020 19:46:34 +0100 Subject: [PATCH] hpcg: smaller input size --- garlic/exp/hpcg/oss.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/garlic/exp/hpcg/oss.nix b/garlic/exp/hpcg/oss.nix index 79ae20d..fce3d2c 100644 --- a/garlic/exp/hpcg/oss.nix +++ b/garlic/exp/hpcg/oss.nix @@ -11,7 +11,10 @@ with stdenv.lib; let # Initial variable configuration varConf = with bsc; { - n = [ { x = 256; y = 288; z = 288; } ]; + # FIXME: Temporally reduce the input size until we can load a precomputed + # input in each run, otherwise the execution time is very large. + n = [ { x = 104; y = 104; z = 104; } ]; + #n = [ { x = 256; y = 288; z = 288; } ]; nblocks = [ 12 24 48 96 192 384 ]; };