The TosaToTensor pass was born out of a rename from TosaToStandard, in
126e7eaf0 ([tosa] Add option to disable tosa.apply_scale lowering in
TosaToStandard), but having a conversion pass for a sole tosa.slice is
ill-conceived. The idea of lowering the tosa dialect to the tensor
dialect doesn't quite make sense: only a couple of operations can be
converted. Instead, move the SliceConverter to TosaToLinalg, which has a
lot of existing conversions already. While at it, make some minor fixes
to the test.
Signed-off-by: Ramkumar Ramachandra <r@artagnon.com>