Open hiddenvs opened 1 month ago
As a heads up this project is unstaffed and support for it is extremely limited. With that said it looks like this error message is because you are not using cgbn_error_report_alloc() correctly. Have you looked at the examples? It also looks like you might be using host functions on the device. You will notice in the example pasted below this function is called from the host and takes an object by reference which gets allocated. You then pass this to the device via a kernel argument.
https://github.com/NVlabs/CGBN/blob/master/samples/sample_01_add/add.cu#L132
Part of source code:
Compiling error:
What I found in examples and source codes for CGBN:
cudaError_t cgbn_error_report_alloc(cgbn_error_report_t **report);
What am I missing ?