| 2006 | |
| 2007 | |
| 2008 | Option<double> Resources::gpus() const |
| 2009 | { |
| 2010 | Option<Value::Scalar> value = get<Value::Scalar>("gpus"); |
| 2011 | if (value.isSome()) { |
| 2012 | return value->value(); |
| 2013 | } else { |
| 2014 | return None(); |
| 2015 | } |
| 2016 | } |
| 2017 | |
| 2018 | |
| 2019 | Option<Bytes> Resources::mem() const |
no test coverage detected