Tim Ohliger

Results 50 comments of Tim Ohliger

Latest progress on pybind11 can be followed in pybind/pybind11#5212 and pybind/pybind11#5502 This should be the last required fix in pybind11, but is still in development.

The final pybind11 PR pybind/pybind11#5212 got merged. 🎉 I will start working on updating this PR on the weekend, so typing support can finally be included.

Sorry, I was and still am pretty busy with writing my master thesis (deadline in under a month). I am planning on finishing #7249 this weekend (already have some fixes...

From a coding perspective, it would be possible and not very hard to add. But I cannot decide if that is wanted (gotta wait for some maintainer to decide). Alternatively,...

Do you have any minimal example that causes this error? It is hard to debug without any code or at least a snippet on how you call this function.

Here are the spots that have to change if anybody wants to upgrade: This is for building from source: https://github.com/isl-org/Open3D/blob/f02e7d24ea115e716445a7fae5093bce60a37d20/3rdparty/curl/curl.cmake#L28-L33 This also requires prebuilt curl to be uploaded in https://github.com/isl-org/open3d_downloads:...

> @timohl I have tried some various things like to get `io_name` working with templated arguments. Is there something obvious I am missing? Yes, but maybe not so obvious. `io_name`...

Great to hear that it is working now! One small style question @InvincibleRMC: Any reason why you are using escaped quotation marks (`\"` instead of plain `"`) in multi-line strings?...

Each type caster still has to be checked if it actually supports `ArrayLike` behaviour (e.g., passing a list). I just changed each occurrence of `np.ndarray` without actually checking if the...

I have added tests and some fixes in #5502. The casters of `Eigen::TensorMap` and `Eigen::Ref` do not accept `ArrayLike` types (like `list`). In order to reflect this in the signature,...