Skip to content
Snippets Groups Projects

[GPU] use shared Communicator and remove MPI dependency from VirtualFluids_GPU. Renamed mpi module to parallel

Merged Sören Peters requested to merge soe.peters/VirtualFluids:feature/parallel into develop
2 files
+ 23
10
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -33,26 +33,26 @@ r"""
=======================================================================================
"""
try:
from .bindings import basics
from . import basics
except ImportError:
print("Basics bindings not included")
try:
from .bindings import logger
from . import logger
except ImportError:
print("Logger bindings not included")
try:
from .bindings import lbm
from . import lbm
except ImportError:
print("LBM bindings not included")
try:
from .bindings import communicator
from . import communicator
except ImportError:
print("communicator bindings not included")
try:
from .bindings import gpu
from . import gpu
except ImportError:
print("GPU bindings not included")
try:
from .bindings import cpu
from . import cpu
except ImportError:
print("CPU bindings not included")
\ No newline at end of file
Loading