| 1987 | |
| 1988 | |
| 1989 | Option<double> Resources::gpus() const |
| 1990 | { |
| 1991 | Option<Value::Scalar> value = get<Value::Scalar>("gpus"); |
| 1992 | if (value.isSome()) { |
| 1993 | return value->value(); |
| 1994 | } else { |
| 1995 | return None(); |
| 1996 | } |
| 1997 | } |
| 1998 | |
| 1999 | |
| 2000 | Option<Bytes> Resources::mem() const |