pub fn parse_coma_spec(
    symbol_table: &SymbolTable,
    size: &str
) -> TractResult<InferenceFact>
Examples found in repository?
src/tensor.rs (line 95)
91
92
93
94
95
96
pub fn parse_spec(symbol_table: &SymbolTable, size: &str) -> TractResult<InferenceFact> {
    if size.is_empty() {
        return Ok(InferenceFact::default());
    }
    parse_coma_spec(symbol_table, size)
}