Add type to handling

This commit is contained in:
Dominik Werder
2021-06-10 11:34:20 +02:00
parent 9c1cf3bba3
commit 99c45985ef
2 changed files with 20 additions and 9 deletions

View File

@@ -89,7 +89,7 @@ fn make_num_pipeline(
ScalarType::I16 => match_end!(i16, byte_order, shape, query, node_config),
ScalarType::I32 => match_end!(i32, byte_order, shape, query, node_config),
ScalarType::I64 => match_end!(i64, byte_order, shape, query, node_config),
ScalarType::F32 => match_end!(f64, byte_order, shape, query, node_config),
ScalarType::F32 => match_end!(f32, byte_order, shape, query, node_config),
ScalarType::F64 => match_end!(f64, byte_order, shape, query, node_config),
}
}