mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-12 03:03:51 +08:00
db0642ec47
date: 2025-12-18T23:23:16 master commit: 154c2334110373950bac1c36fc6e943cb1208326
12 lines
430 B
Python
12 lines
430 B
Python
import ctypes
|
|
import tinygrad.runtime.autogen.hip as hip
|
|
from tinygrad.runtime.ops_hip import check
|
|
from tinygrad.helpers import init_c_var
|
|
|
|
if __name__ == "__main__":
|
|
check(hip.hipSetDevice(0))
|
|
evt = init_c_var(hip.hipEvent_t(), lambda x: check(hip.hipEventCreate(ctypes.byref(x))))
|
|
check(hip.hipSetDevice(1))
|
|
check(hip.hipStreamWaitEvent(None, evt, 0))
|
|
check(hip.hipSetDevice(0))
|
|
check(hip.hipEventRecord(evt, None)) |