|
|
|
|
|
by throwawaymaths
1431 days ago
|
|
Yes. In elixir, you can install GPU stuff (Nx) with very few problems. Some people have built some really cool tools like burrito, which cross-compile and bundles up the VMs to other architectures. Even before that it's been pretty common to cross-compile from x86 to an arm raspberry pi image in the form of Nerves. As a rule elixir devs don't do system level dependencies, probably because of lessons learned from the hell scape that is python (and Ruby) Yesterday I onboarded a coworker onto the elixir project, he instinctively put it into a docker container. I laughed and just told him to run it bare (he runs macos, I run Linux). There were 0 problems out of the box except I forgot the npm incantations to load up the frontend libraries. |
|
- Can you resolve precompiled GPU dependencies with system managed CUDA driver versions?
- Are there packages that can convert PDF to PNG without system dependencies?
- Can you run a Qt GUI app on CI without needing to do any additional system setup?
With regards to cross compilation tools like burrito, that's neat! But Python is not a compiled language.