From ef8ed9ac37a6513be9411b3a222c36eaedba097d Mon Sep 17 00:00:00 2001 From: Bo Zhou <2466956298@qq.com> Date: Mon, 24 Aug 2020 10:09:42 +0800 Subject: [PATCH] Update README.md (#405) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cde0339..a06e91e 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ class Agent(object): parl.connect('localhost:8037') agent = Agent() agent.say_hello() -ans = agent.sum(1,5) # run remotely and not consume any local computation resources +ans = agent.sum(1,5) # it runs remotely, without consuming any local computation resources ``` Two steps to use outer computation resources: 1. use the `parl.remote_class` to decorate a class at first, after which it is transferred to be a new class that can run in other CPUs or machines. -- GitLab