hyperqueue
hyperqueue copied to clipboard
Adding a function to get results back from Python API function
It seems that the Client in Python API is able to wait for jobs using the wait_for_jobs() function, but it is not able to receive the results that are returned by that same job.
job = Job() job.function(my_function) submitted = client.submit(job) client.wait_for_jobs(submitted)
?? there is no function to receive results