So, installing this onto the nvidia NGC pytorch container that i'm running on a p3 instance, my goal is to provide a hosted version of pinokio on an isolated cloud VM. I've got most of the troubleshooting done; the torch(cuda.visible.devices) is true inside the container, nvcc is configured, and the runtime appears to be forwarded correctly. But, from /workspace in the container, running:
git clone pinokiod
cd pinokiod
npm install
npm start
will successfully launch the browser, but the console output reads as follows:

I can't quite tell from looking at the codebase, but I assume it's to do with isntalling the application to /workspace is causing the fs reads to look at the wrong part of the container filesystem to find gpu information. Any advice on how to modify?
Once I can get it figured out, I'll package it all up and push the dockerfiles/ngc instructions/etc so this can be deployed onto cloud infra with minimal setup.
So, installing this onto the nvidia NGC pytorch container that i'm running on a p3 instance, my goal is to provide a hosted version of pinokio on an isolated cloud VM. I've got most of the troubleshooting done; the torch(cuda.visible.devices) is true inside the container, nvcc is configured, and the runtime appears to be forwarded correctly. But, from /workspace in the container, running:
git clone pinokiod
cd pinokiod
npm install
npm start
will successfully launch the browser, but the console output reads as follows:
I can't quite tell from looking at the codebase, but I assume it's to do with isntalling the application to /workspace is causing the fs reads to look at the wrong part of the container filesystem to find gpu information. Any advice on how to modify?
Once I can get it figured out, I'll package it all up and push the dockerfiles/ngc instructions/etc so this can be deployed onto cloud infra with minimal setup.