-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to use the numpy data in the DALI #177
Comments
Hi @1124676457 , thanks for reaching out. Could you post your DALI Pipeline code? Or at least some relevant part of it? |
@dali.pipeline_def(batch_size=1, num_threads=4, device_id=0)
the decode code is this, the worker.frame is the nvdecode's result, shape is (1620,1920): |
your DALI Pipeline looks correct. It suggests, that maybe you're sending the data to the Triton in an improper way. The typical sending pattern for the pipeline you've posted is using either Please refer to these examples that illustrate the usage pattern that is the most common with the pipeline you've presented:
dali_backend/client/dali_grpc_client.py Line 133 in 3639beb
|
I use your NVIDIA hardware decoder, nvdecode, to decode the video and generate data in numpy format. How to use dali's gpu accelerated pre-processing, I use Dali.fn.decoders. image, and the error is as follows: Error in thread 1: [/opt/dali/dali/operators/decoder/host/host_decoder.cc:30] Assert on "input.ndim() == 1" failed: Input must be 1D encoded jpeg string.
If I remove decoders and directly use dali.fn.resize(device='gpu'), an error will be reported. Data on cpu cannot be operated by gpu
what shoud i do, my data.shape is (1620, 1920)
The text was updated successfully, but these errors were encountered: