bitpit
bitpit copied to clipboard
Open source library for scientific HPC
PABLO: *UBSAN runtime_error* Morton left shift by 16 places cannot be represented in type uint64_t
Getting different number of cells when running with march native in our code base so issue is a result from debugging that. Running with: -fsanitize=undefined, -fsanitize=bounds, -fsanitize=implicit-conversion, -fsanitize=integer, -fsanitize=nullability, -O3,...
In order to keep the code style consistent among all bitpit modules, I've added to the root of the repository the configuration file needed by clang-format. The presence of this...
Supporting Windows MSVC compiler would require: - [x] Removing GCC/LLVMisms from CMake scripts - [ ] Ensuring C++ codes builds with `cl` - [ ] Probably more...
Hi, I'm able to trigger the following memory error from using DDT, using the following settings using the following reproducer. Looks like some sort of internal storage related issue but...
The class ConfigParser is now able to read/write XML attributes. XML attributes are designed to contain data related to a specific element, for example here: ``` 11.11 ``` ```min``` and...
On actual master, Linux gnu gcc 4.8.5 reports the following error : ``` error: use of deleted function ‘bitpit::LoggerBuffer::LoggerBuffer(const bitpit::LoggerBuffer&)’ m_fileVerbosityThreshold(other.m_fileVerbosityThreshold) ^ In file included from /bitpit/src/common/logger.cpp:39:0: /src/common/logger.hpp:79:7: note: ‘bitpit::LoggerBuffer::LoggerBuffer(const...
RBFs make use of std::pow(a,b), in which b is **always** an integer. By carrying out tests for the std::pow function, it seems that this is suboptimal in contrast to the...
I'd like to suggest here two minor ideas to slightly improve cmake in bitpit, related to [modern cmake best practice use](https://cliutils.gitlab.io/modern-cmake/) 1. Use imported targets: e.g. when calling find_package(MPI), cmake...
We may need to evaluate the levelset on unstructured meshes, for example for the evaluation of the distance function needed by some turbulence models. Using the SkdTree it shouldn't be...