**Description of the problem**
Class `LlamaData` in `llama-run` contains utility functions that
never access non-static data members or non-static member
functions. However they are unnecessarily defined as non-static
as well.
**Proposed solution**
Make those utility functions static, so there is single copy of
them shared by all objects of that class type.