Merge pull request #1337 from shikhar413/cmfd-omp

OpenMP parallelism + minor code cleanup for CMFD
This commit is contained in:
Paul Romano 2019-12-17 22:28:46 -06:00 committed by GitHub
commit abe5596cb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 324 additions and 383 deletions

View file

@ -158,7 +158,7 @@ with tempfile.TemporaryDirectory() as tmpdir:
print('Creating compressed archive...')
test_tar = pwd / 'nndc_hdf5_test.tar.xz'
with tarfile.open(str(test_tar), 'w:xz') as txz:
txz.add('nndc_hdf5')
txz.add(output_dir)
# Change back to original directory
os.chdir(str(pwd))