fromValue static method

OrtSparseFormat fromValue(
  1. int value
)

Implementation

static OrtSparseFormat fromValue(int value) => switch (value) {
  0 => ORT_SPARSE_UNDEFINED,
  1 => ORT_SPARSE_COO,
  2 => ORT_SPARSE_CSRC,
  4 => ORT_SPARSE_BLOCK_SPARSE,
  _ => throw ArgumentError('Unknown value for OrtSparseFormat: $value'),
};