We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since CUDA 12.1, the driver API has a Coredump Attributes Control API:
CUresult cuCoredumpGetAttribute ( CUcoredumpSettings attrib, void* value, size_t* size ) CUresult cuCoredumpGetAttributeGlobal ( CUcoredumpSettings attrib, void* value, size_t* size ) CUresult cuCoredumpSetAttribute ( CUcoredumpSettings attrib, void* value, size_t* size ) CUresult cuCoredumpSetAttributeGlobal ( CUcoredumpSettings attrib, void* value, size_t* size )
(context-specific and app-wide getter and setters).
And the attributes are:
CU_COREDUMP_ENABLE_ON_EXCEPTION CU_COREDUMP_TRIGGER_HOST CU_COREDUMP_LIGHTWEIGHT CU_COREDUMP_ENABLE_USER_TRIGGER CU_COREDUMP_FILE CU_COREDUMP_PIPE CU_COREDUMP_MAX
There are also some related context flags:
Let's figure out what all of these do and move on to support them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since CUDA 12.1, the driver API has a Coredump Attributes Control API:
(context-specific and app-wide getter and setters).
And the attributes are:
There are also some related context flags:
Let's figure out what all of these do and move on to support them.
The text was updated successfully, but these errors were encountered: