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
Adding

Adding --privileged to docker arguments in agent docker mode
Minor stuff but by default GPUs are passed to container running with this flag (I am on archlinux).
Makes sense to add it to docker run by default if GPUs are mentioned in agent.

And this seem to have a drawback - I wanted to pass a single GPU on a mulitGPU machine with the following agent launch
clearml-agent daemon --gpus 0 --queue default --docker
But docker still sees all GPUs.
And in my case I can not pass GPUs do docker without --privileged flag.

  
  
Posted one year ago
Votes Newest

Answers 3


One thing though - I am running agent on behalf of a regular user.

Oh that might be credentials / docker service issue (i.e. the user might not have the ability to rn a docker with --gpus, but as you mentioned,, that seems like an arch thing 🙂 )

  
  
Posted one year ago

Makes sense to add it to docker run by default if GPUs are mentioned in agent.

I think this is an arch thing, --privileged is not needed on ubuntu flavor, that said you can always have it if you add it here:
https://github.com/allegroai/clearml-agent/blob/178af0dee84e22becb9eec8f81f343b9f2022630/docs/clearml.conf#L149

clearml-agent daemon --gpus 0 --queue default --docker
But docker still sees all GPUs.

Yes --gpus should be enough, are you sure regrading the --privileged flag ?

  
  
Posted one year ago

Yeap. That's an arch thing but in case of arch --gpus is not enough.
One thing though - I am running agent on behalf of a regular user.

  
  
Posted one year ago
579 Views
3 Answers
one year ago
one year ago
Tags