0
Participant
,
/t5/premiere-pro-discussions/sdk-procamp-gpu-documentation-or-example-to-interact-with-cuda/td-p/7074962
Apr 20, 2015
Apr 20, 2015
Copy link to clipboard
Copied
Hi- I see the SDK_ProcAmpGPU example uses OpenCL and casts the memory info as cl_mem for GPU processing:
void* frameData = 0;
mGPUDeviceSuite->GetGPUPPixData(*outFrame, &frameData);
cl_mem buffer = (cl_mem)frameData;
When using CUDA, what is the proper struct/class to cast the frameData for use with CUDA?
Thanks,
John
TOPICS
SDK
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Adobe Employee
,
Apr 20, 2015
Apr 20, 2015
It will be a CUdeviceptr as returned by cuMemAlloc
Adobe Employee
,
/t5/premiere-pro-discussions/sdk-procamp-gpu-documentation-or-example-to-interact-with-cuda/m-p/7074963#M295835
Apr 20, 2015
Apr 20, 2015
Copy link to clipboard
Copied
It will be a CUdeviceptr as returned by cuMemAlloc
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
BrightlandCo
AUTHOR
Participant
,
LATEST
/t5/premiere-pro-discussions/sdk-procamp-gpu-documentation-or-example-to-interact-with-cuda/m-p/7074964#M295836
Apr 20, 2015
Apr 20, 2015
Copy link to clipboard
Copied
Thanks Steve!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

