Nico Mandery
Nico Mandery
@dfellis OpenMP allows setting the number of threads C functions like [omp_set_num_threads](https://gcc.gnu.org/onlinedocs/libgomp/omp_005fset_005fnum_005fthreads.html#omp_005fset_005fnum_005fthreads) or even using the environment variable `OPENMP_NUM_THREADS`. There are also a [few more variables](https://gcc.gnu.org/onlinedocs/libgomp/Environment-Variables.html#Environment-Variables) to control its behavior....
@isaacbrodsky That is perfectly understandable and makes sense to keep number of dependencies the library as low as possible. My intention with this issue was just sharing my findings. For...
Hi, currently the project is not used by us internally. Our workloads in the current projects got very write-heavy and we switched to Clickhouse a while ago which is better...
That would indeed be a nice feature to have. H3 uses cmake as it buildsystem, h3-sys is using the `cmake`-crate to build h3. Looking at the current state in cmake...
The `use-rayon` feature is optional for the `h3ron` crate, yes. For the `h3ron-ndarry` and `h3ron-graph` it is required, though. I suppose it would not be to bad when these two...
Seems the `cc` crate automatically compiles with emscripten when the target is emscripten. So we should definitively use cc. https://github.com/alexcrichton/cc-rs/blob/178fd031e74f643721605e25110ee6abce8dbe05/src/lib.rs#L2140 Edit: Correction, compiling to wasm is not supported: https://github.com/alexcrichton/cc-rs/issues/580
I did not have much time to look further into this, but I just stumbled over https://github.com/rustwasm/team/issues/291 .
Compiling to wasm32-wasi works now - see #51. Requires the unreleased version from the main branch. This won't help when targeting browsers, though. For that the wasm32-unknown-unknown target would be...
There are no such plans currently, although it would be very helpful to not require cmake and it would also resolve the issues people having compiling for WASM (#21) and...
Wow - sounds great. Just go ahead when you like and start working on a fork of this repo. Somehow I like the idea of solution where the user of...