GithubHelp home page GithubHelp logo

Modularize Manifold about manifold HOT 17 OPEN

elalish avatar elalish commented on June 26, 2024
Modularize Manifold

from manifold.

Comments (17)

kintel avatar kintel commented on June 26, 2024 1

Some thou^H^H^H^Hramblings:

  • Splitting up into feature sets is a bit of a slippery slope, as the number of possible permutations may explode, making testing very annoying. Can be mitigated by creating some automated test "matrixes". If there is a way of splitting into distinct sub-libraries, that might be preferable. Not sure how feasible that is.
  • Some larger libraries do this pretty well (e.g. Qt, boost). They pretty much split into completely distinct libraries, possibly with some interdependencies.
  • I kind of assume that people asking for this are mostly thinking in terms of dependencies, not features, but it would be nice if this is surfaced as feature selectors where the dependencies follow.
  • In general, be prepared to spend some quality time with CMake :)
  • Once you get sufficiently fed up with CMake, don't fall for the temptation to create a build system generator-generator script, as you'll eventually reinvent one of the 86 different build systems already created to solve this problem.
  • Don't skimp on automated testing

Something which would make sense to keep in mind: There seems to be a beginning movement to start packaging Manifold into Linux distros. This currently comes implicitly through the OpenSCAD distro packages, but may become strengthened by other OSS projects adopting manifold. This can be a bit of a pivotal moment, as you'll be held to API versioning/compatibility standards (if not you, the people ending up owning your packages). Good API design and semantic versioning gets you a long way here, but having multiple variants of the same binary library is a bad thing in this domain (unless there is some sort of ultimate build containing everything that makes it into distros). Could be worth keeping in the back of your heads.

from manifold.

pca006132 avatar pca006132 commented on June 26, 2024 1

Splitting into different packages should be simple. In fact we have that internally. But probably need less generic naming, as well as more tests to make sure some packages can be optional and things can still work.

from manifold.

cjmayo avatar cjmayo commented on June 26, 2024 1

If installing CCCL only to build Manifold (or OpenSCAD) then it can configured with:

-DCCCL_ENABLE_LIBCUDACXX=OFF
-Dlibcudacxx_ENABLE_INSTALL_RULES=ON
-DCCCL_ENABLE_CUB=OFF
-DCUB_ENABLE_INSTALL_RULES=ON
-DCCCL_ENABLE_THRUST=OFF
-DTHRUST_ENABLE_INSTALL_RULES=ON
-DCCCL_ENABLE_TESTING=OFF

Perhaps the issue is in using it as a submodule without building (just copying the files).

from manifold.

fire avatar fire commented on June 26, 2024 1

I like https://github.com/ingydotnet/git-subrepo for my projects as git submodules are difficult to use. Especially when for example manifold does manifold -> thrust -> imgui

from manifold.

pca006132 avatar pca006132 commented on June 26, 2024

I feel that getting rid of Clipper can be quite painful. If we want to do something about clipper dependency, it will be a large breaking change and should be in the 3.0 plan. I think there were comments about using our own type so it is easier to refactor.

from manifold.

elalish avatar elalish commented on June 26, 2024

Isn't clipper pretty much walled-off within CrossSection? I think we should be able to build Manifold without CrossSection if we want.

from manifold.

elalish avatar elalish commented on June 26, 2024

Also relevant to Blender integration: https://projects.blender.org/blender/blender/issues/120182#issuecomment-1170472

from manifold.

pca006132 avatar pca006132 commented on June 26, 2024

ah, I was conflating it with glm, not something optional.

probably indicating I should sleep now :P

from manifold.

fire avatar fire commented on June 26, 2024

In Godot Engine engine's build we use these dependencies.

  • manifold
  • quickhull
  • libcudacxx
  • thrust
  • glm

The only reasonable dependency we can remove is [thrust, libcudacxx]. quickhull is fairly short.

As mentioned earlier glm is load bearing and if you didn't pick glm, another implementation of math in C++ would probably be as big.

from manifold.

elalish avatar elalish commented on June 26, 2024

As we've said before, Manifold has absolutely no dependence on libcudacxx anymore - we're not using that backend of Thrust at all. Is there a reason you're including it?

from manifold.

fire avatar fire commented on June 26, 2024

In thrust:

All mentions of #include <cuda/std/type_traits> need to be converted to #include <type_traits>

You're right!

Maybe I'm missing a flag or I'm using the wrong thrust.

Edited:

https://github.com/NVIDIA/libcudacxx/blob/55dd2c99346baa3a14949a0f7e9c41865e434eda/include/cuda/std/type_traits

from manifold.

fire avatar fire commented on June 26, 2024

I switched to the newest cccl (thrust, libcudacxx). https://github.com/nvidia/cccl and it seems to still requires cccl/libcudacxx.

Note: that https://github.com/NVIDIA/thrust has been archived on Mar 21, 2024

Edited:

Compile log where I removed the cccl/libcudacxx folder.

log.txt

Edited:

There seems to be chain of includes from thrust that go to libcudacxx.

from manifold.

elalish avatar elalish commented on June 26, 2024

Interesting, it does seem like they pulled libcudacxx deeper into Thrust at some point, probably in preparation for this CCCL thing it's become. Looks like we're not the only ones displeased.

Maybe it's time to finally get off of Thrust - deprecation is a pretty good reason. @pca006132 already did a lot of work to make it easier for us to slot in a different parallel library underneath. @pca006132 Do you have any thoughts on what we should switch to? It's still hard for me to tell if PSTL encompasses TBB or vice versa, or if there's a yet more universal API we should be using.

from manifold.

elalish avatar elalish commented on June 26, 2024

Is there a better way for manifold to package our Thrust (or CCCL) dependency than as a submodule? Curious if there's best practices here...

from manifold.

cjmayo avatar cjmayo commented on June 26, 2024

Personally I'm not using the submodule, but instead installing separately into my system and using it for Manifold and OpenSCAD.

But my guess is if using the submodule perhaps there is a need to run cmake etc. and install into a local directory and then use the installed directory when building Manifold.

from manifold.

elalish avatar elalish commented on June 26, 2024

I have to admit, the problems you're running into @fire (copying dependencies instead of pulling the submodule) makes me think the submodule approach is better. I don't want that giant pile of unused files in my repo any more than you do (which is what I get with git-subrepo). Thrust and CCCL still don't link in the actual CUDA code in our case, so all that cub and libcudacxx business doesn't actually end up in any of our binaries anyway.

I don't really see what all the submodule hate is about anyway - I find them pretty great for managing large 3rd-party dependencies that I don't ever want to touch, besides to update to the latest release occasionally. I feel like everyone who dislikes them is using them when they control both repos. Am I missing something?

from manifold.

fire avatar fire commented on June 26, 2024

My previous monorepo had like 40+ submodules in various states of nesting. Your use cases may vary.

from manifold.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.