perf(thread saftey): All Engines are now thread safe
Previously engines were not thread safe, a seperate engine would be needed for every thread. This is no longer the case. This allows for much more efficient parallel execution
This commit is contained in:
@@ -10,4 +10,5 @@ option('python_target_version', type: 'string', value: '3.13', description: 'Tar
|
||||
option('build_c_api', type: 'boolean', value: true, description: 'compile the C API')
|
||||
option('build_tools', type: 'boolean', value: true, description: 'build the GridFire command line tools')
|
||||
option('openmp_support', type: 'boolean', value: false, description: 'Enable OpenMP support for parallelization')
|
||||
option('use_mimalloc', type: 'boolean', value: true, description: 'Use mimalloc as the memory allocator for GridFire. Generally this is ~10% faster than the system allocator.')
|
||||
option('use_mimalloc', type: 'boolean', value: true, description: 'Use mimalloc as the memory allocator for GridFire. Generally this is ~10% faster than the system allocator.')
|
||||
option('build_benchmarks', type: 'boolean', value: false, description: 'build the benchmark suite')
|
||||
Reference in New Issue
Block a user