diff options
author | 2019-10-20 10:06:45 -0700 | |
---|---|---|
committer | 2019-10-20 10:06:45 -0700 | |
commit | 5111d11e2ebf2646c7032e90d5fa3b594ffc521c (patch) | |
tree | 64cd9848a3b63e16101efc3ade9169907e71204c | |
parent | de6ed6699a6dcc523c1ce862478efbc96cf04eca (diff) | |
download | WarpX-5111d11e2ebf2646c7032e90d5fa3b594ffc521c.tar.gz WarpX-5111d11e2ebf2646c7032e90d5fa3b594ffc521c.tar.zst WarpX-5111d11e2ebf2646c7032e90d5fa3b594ffc521c.zip |
not faster with make -j4. Reversing to make -j2 for TravisCO tests
-rw-r--r-- | Regression/prepare_file_travis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Regression/prepare_file_travis.py b/Regression/prepare_file_travis.py index 9275605eb..6c3be105f 100644 --- a/Regression/prepare_file_travis.py +++ b/Regression/prepare_file_travis.py @@ -34,7 +34,7 @@ if arch == 'GPU': print('Compiling for %s' %arch) # Use only 2 cores for compiling -text = re.sub( 'numMakeJobs = \d+', 'numMakeJobs = 4', text ) +text = re.sub( 'numMakeJobs = \d+', 'numMakeJobs = 2', text ) # Use only 1 MPI and 1 thread proc for tests text = re.sub( 'numprocs = \d+', 'numprocs = 1', text) |