cuda.core
0.2.0 Release Notes¶
Released on <TODO>, 2025
Highlights¶
Add
ProgramOptions
to facilitate the passing of runtime compile options toProgram
.Add
DeviceProperties
to provide pythonic access to device properties.Add kernel attributes to
Kernel
Breaking Changes¶
Change
__cuda_stream__
from attribute to methodThe
compile()
method no longer accepts the options argument. Instead, you can optionally pass an instance ofProgramOptions
to the constructor ofProgram
.properties()
now provides an instance ofDeviceProperties
instead of a dictionary.
New features¶
Expose
ObjectCode
as a public API, which allows loading cubins from memory or disk. For loading other kinds of code types, please continue usingProgram
.
Limitations¶
<TODO>