10
1
mirror of https://github.com/pfloos/quack synced 2024-12-22 04:13:52 +01:00

mini modif

This commit is contained in:
Abdallah Ammar 2024-12-06 15:57:35 +01:00
parent ba5da9536a
commit ce1882cd4e

View File

@ -162,8 +162,7 @@ else:
eri_mmap = np.memmap(output_file_path, dtype='float64', mode='w+', shape=eri_shape)
mol.intor('int2e', out=eri_mmap)
for i in range(norb):
transposed_chunk = eri_mmap[i, :, :, :].transpose(1, 0, 2)
eri_mmap[i, :, :, :] = transposed_chunk
eri_mmap[i, :, :, :] = eri_mmap[i, :, :, :].transpose(1, 0, 2)
eri_mmap.flush()
del eri_mmap
else: