Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hey,

Hey,
I had a doubt with clearml-agent
I run it locally in non docker mode,
I was wondering if there is a cap to the number of cpu cores that are assigned to the agent by default, if so is there a possibility for me to vary this?

  
  
Posted one year ago
Votes Newest

Answers 9


Hey
unfortunatly there is no way to manage the CPU cores allocation for an agent

  
  
Posted one year ago

Also, if I were to move to g pu machines, how do I assign more cores to a worker or so?

  
  
Posted one year ago

hey
you can allocate ressources to worker by adding the --gpus parameter to the command line, when you fire the agent. The gpus are designed by a number.

Example: spin two agents, one per gpu on the same machine
clearml-agent daemon --detached --gpus 0 --queue default clearml-agent daemon --detached --gpus 1 --queue default

  
  
Posted one year ago

for controlling the number of cpus cores, i am not sure. i keep you updated asap

  
  
Posted one year ago

What is the detached flag for?

  
  
Posted one year ago

it is for the sack of the example. It permits to fire the agents in background, and thus to have several agents fired from the same terminal

  
  
Posted one year ago

Do let me know about the cpu cores

  
  
Posted one year ago

WickedElephant66 while there is no way to tell an Agent which CPU cores it's associated with, you can work in docker mode and do the separation there (IE, each docker container sees only X cores). I know other clearml users use it that way

  
  
Posted one year ago

Thanks a lot David !

  
  
Posted one year ago
503 Views
9 Answers
one year ago
one year ago
Tags