Ayrton Sparling
Ayrton Sparling
I believe it should be possible. The [aes](https://docs.rs/aes/latest/aes/) crate uses [cpufeatures](https://docs.rs/cpufeatures/latest/cpufeatures/index.html) to detect simd support.
I spent a good amount of time working on this. First using rust's nightly feature `portable-simd`, then using rust's simd abstractions. It turns out that doing runtime detection is seriously...
Yeah looking at your code it looks possible. We'd need to change the architecture here to something similar to yours. Where there is an underlying abstraction at the highest level...
Does it work when you manually try to switch the nvidia card off with bbswitch?
https://github.com/Bumblebee-Project/bbswitch#usage
> Found this in the system logs: `Failed to find module 'bbswitch load_state=0'` I looks like you don't have bbswitch installed or the module may not be in your initramfs.
I'm running into this issue to. The docker image overwrites the config on every start. I tried to bind the config as read only to prevent this but the image...
You unconditionally overwrite the file here: https://github.com/Ride-The-Lightning/c-lightning-REST/blob/29de0b08613d4f7866e2c604d09ce25c690bc118/docker-entrypoint.sh#L4-L12
A workaround for the time being (if you're using docker-compose) it to override the docker entrypoint. Add the following to your `docker-compose.yml`: ```yml entrypoint: node cl-rest.js ```
Thanks for the link, I'll do that. I did legacy modesetting without the example and it was working. I'm in the middle of rewritting the application right now so I'll...