Skip to content
Snippets Groups Projects
Commit 30355e4a authored by Soeren Peters's avatar Soeren Peters
Browse files

Fix pyfluids import and adds double accuracy

parent 869a449a
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !261. Comments created here will be created in the context of that merge request.
......@@ -79,10 +79,10 @@ IF(BUILD_VF_CPU)
target_include_directories(cpu_bindings PRIVATE ${CMAKE_SOURCE_DIR}/src/)
target_include_directories(cpu_bindings PRIVATE ${CMAKE_BINARY_DIR})
target_compile_definitions(cpu_bindings PUBLIC VF_DOUBLE_ACCURACY) # TODO: remove this and always set it dynamically
target_compile_definitions(basics_bindings PUBLIC VF_DOUBLE_ACCURACY)
target_compile_definitions(logger_bindings PUBLIC VF_DOUBLE_ACCURACY)
target_compile_definitions(lbm_bindings PUBLIC VF_DOUBLE_ACCURACY)
# target_compile_definitions(cpu_bindings PUBLIC VF_DOUBLE_ACCURACY) # TODO: remove this and always set it dynamically
# target_compile_definitions(basics_bindings PUBLIC VF_DOUBLE_ACCURACY)
# target_compile_definitions(logger_bindings PUBLIC VF_DOUBLE_ACCURACY)
# target_compile_definitions(lbm_bindings PUBLIC VF_DOUBLE_ACCURACY)
target_compile_definitions(cpu_bindings PRIVATE VF_METIS VF_MPI)
add_dependencies(python_bindings cpu_bindings)
......@@ -100,3 +100,16 @@ IF(BUILD_VF_CPU)
target_compile_definitions(pymuparser PRIVATE VF_METIS VF_MPI)
target_link_libraries(pymuparser PRIVATE muparser)
ENDIF()
if(BUILD_VF_DOUBLE_ACCURACY)
IF(BUILD_VF_CPU)
target_compile_definitions(cpu_bindings PRIVATE VF_DOUBLE_ACCURACY)
endif()
target_compile_definitions(basics_bindings PRIVATE VF_DOUBLE_ACCURACY)
target_compile_definitions(logger_bindings PRIVATE VF_DOUBLE_ACCURACY)
target_compile_definitions(lbm_bindings PRIVATE VF_DOUBLE_ACCURACY)
IF(BUILD_VF_GPU)
target_compile_definitions(gpu_bindings PRIVATE VF_DOUBLE_ACCURACY)
endif()
target_compile_definitions(communicator_bindings PRIVATE VF_DOUBLE_ACCURACY)
endif()
\ No newline at end of file
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment