Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
VirtualFluids
Merge requests
!261
[GPU] use shared Communicator and remove MPI dependency from VirtualFluids_GPU. Renamed mpi module to parallel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[GPU] use shared Communicator and remove MPI dependency from VirtualFluids_GPU. Renamed mpi module to parallel
soe.peters/VirtualFluids:feature/parallel
into
develop
Overview
4
Commits
1
Pipelines
0
Changes
2
Merged
Sören Peters
requested to merge
soe.peters/VirtualFluids:feature/parallel
into
develop
1 year ago
Overview
4
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Viewing commit
30355e4a
Show latest version
2 files
+
23
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
30355e4a
Fix pyfluids import and adds double accuracy
· 30355e4a
Soeren Peters
authored
1 year ago
pythonbindings/pyfluids/__init__.py
+
6
−
6
Options
@@ -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