From ff3d85da560ebcaa2bdd05f4e10fc3ca86407930 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Tue, 11 Oct 2022 14:51:59 +0300 Subject: [PATCH] Add cross-platform agent execution info (#349) --- docs/clearml_agent.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/clearml_agent.md b/docs/clearml_agent.md index 61906c6f..f6d3ff82 100644 --- a/docs/clearml_agent.md +++ b/docs/clearml_agent.md @@ -184,6 +184,18 @@ You can spin up an agent on any machine: on-prem and/or cloud instance. When spi service a queue(s). Utilize the machine by enqueuing tasks to the queue that the agent is servicing, and the agent will pull and execute the tasks. +:::tip cross-platform execution +ClearML Agent is platform agnostic. When using the ClearML Agent to execute experiments cross-platform, set platform +specific environment variables before launching the agent. + +For example, to run an agent on an ARM device, set the core type environment variable before spinning up the agent: + +```bash +export OPENBLAS_CORETYPE=ARMV8 +clearml-agent daemon --queue +``` +::: + #### Executing an Agent To execute an agent, listening to a queue, run: