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 ]; };