Closed apshoemaker closed 3 years ago
I should note that this is the output from nvidia-smi
:
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 465.24.02 Driver Version: 465.24.02 CUDA Version: 11.3 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 NVIDIA Tesla P4 Off | 00000000:00:04.0 Off | 0 |
| N/A 47C P0 24W / 75W | 0MiB / 7611MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 1 NVIDIA Tesla P4 Off | 00000000:00:05.0 Off | 0 |
| N/A 42C P0 24W / 75W | 0MiB / 7611MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 2 NVIDIA Tesla P4 Off | 00000000:00:06.0 Off | 0 |
| N/A 44C P0 24W / 75W | 0MiB / 7611MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 3 NVIDIA Tesla P4 Off | 00000000:00:07.0 Off | 0 |
| N/A 48C P0 23W / 75W | 0MiB / 7611MiB | 1% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
This is the output from nvcc --version
:
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Wed_Oct_23_19:24:38_PDT_2019
Cuda compilation tools, release 10.2, V10.2.89
ok - wow - very sorry ... disregard. This was a total noob mistake on my part. The project that I have been testing with just didn't have the PixelStreaming plugin enabled. Hopefully if someone equally as noob as I am comes along, perhaps they will not make the same mistake for long.
@apshoemaker
ok - wow - very sorry ... disregard. This was a total noob mistake on my part. The project that I have been testing with just didn't have the PixelStreaming plugin enabled. Hopefully if someone equally as noob as I am comes along, perhaps they will not make the same mistake for long.
All good :')
Not sure if this is relevant, but one thing I noticed was in this command:
docker run --rm --gpus all --network container:signalling contentexamples:1.0
It probably needs the network host
bit like the other one you wrote:
docker run -it --rm -p 80:80 --network host --entrypoint /bin/bash --name signalling pixel-streaming-signalling:1.0
Hello - firstly, thank you for all of your hard work on this project. It's quite brilliant.
I am having an issue with loading the PixelStreaming plugin (I think) while attempting to run my project. I am simply testing out a sample project that comes with the 4.25 Editor called Content Examples.
Firstly, I am starting the SignallingWebServer from the
adamrhen/ue4-full:4.25-pixelstreaming
image like this:Then while in the container, I issue the following command to
cirrus.js
:For my project, please find my Dockerfile below:
Once the container image is built, I run it with the following command:
Note that I am targeting the SignallingWebServer network which is attached to host.
The
Development
log output is below (note that the PixelStreamingServer plugin is NOT being mounted):The
adamrehn/ue4-full:4.25-pixelstreaming
image was built using the followingue4-docker
command:Any thoughts? I can get the web frontend to come up and it shows text that says
Click to Start
, however, when I click on it, I receive an error that the Streamer is not connected. This seems consistent with the fact that the plugin is not being loaded; I imagine thePixelStreamingIP
andPixelStreamingPort
cli switches will have little to no affect if the plugin is not being loaded on startup.Any help you can provide would be most appreciated. Thank you.