Home
last modified time | relevance | path

Searched defs:get_raw_stream (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/pytorch/torch/_dynamo/
H A Ddevice_interface.py107 def get_raw_stream(device_idx: int) -> int: member in DeviceInterface
202 get_raw_stream = staticmethod(get_cuda_stream) # type: ignore[assignment, arg-type] variable in CudaInterface
273 get_raw_stream = staticmethod(get_xpu_stream) # type: ignore[assignment, arg-type] variable in XpuInterface
/aosp_15_r20/external/pytorch/test/inductor/extension_backends/triton/
H A Ddevice_interface.py105 def get_raw_stream(device_index: int): member in DeviceInterface
/aosp_15_r20/external/pytorch/torch/_inductor/
H A Dautotune_process.py649 from torch._C import _cuda_getCurrentRawStream as get_raw_stream unknown