Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cuda_core/cuda/core/experimental/_event.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ cdef class Event:

@classmethod
def _init(cls, device_id: int, ctx_handle: Context, options=None):
cdef Event self = Event.__new__(Event)
cdef Event self = Event.__new__(cls)
Comment thread
kkraus14 marked this conversation as resolved.
Comment thread
kkraus14 marked this conversation as resolved.
cdef EventOptions opts = check_or_create_options(EventOptions, options, "Event options")
flags = 0x0
self._timing_disabled = False
Expand Down
Loading