From e6f6f273a98ac3077acc9f0aa7fe25128b816c94 Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Thu, 15 Oct 2020 19:20:34 +0000 Subject: [PATCH] working example --- python/example_client.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/example_client.py b/python/example_client.py index 5d27a6c..d95542d 100644 --- a/python/example_client.py +++ b/python/example_client.py @@ -23,11 +23,11 @@ def fib(x): def run(): - # out = fact.remote(5) - # out2 = fact.remote(out) - # print("Got fact: ", ray.get(out2)) + out = fact.remote(5) + out2 = fact.remote(out) + print("Got fact: ", ray.get(out2)) fib_out = fib.remote(6) - # print("Fib out:", ray.get(fib_out)) + print("Fib out:", ray.get(fib_out)) if __name__ == "__main__":