You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sync function is supposed to take a default device_id value of -1 according to the docs, but I'm forced to pass in an argument when calling the function. I made a PR for a potential fix.
def sync(device_id: int, /) -> None:
"""
Blocks until all operations on device are finished.
Parameters
----------
device_id: int
Id of the target device.
"""
call_from_clib(sync.__name__, `device_id)
The text was updated successfully, but these errors were encountered:
The sync function is supposed to take a default device_id value of -1 according to the docs, but I'm forced to pass in an argument when calling the function. I made a PR for a potential fix.
The text was updated successfully, but these errors were encountered: