From c5d8c12469d7b7badd35369106c4b975f718536c Mon Sep 17 00:00:00 2001 From: Aart Bik <39774503+aartbik@users.noreply.github.com> Date: Fri, 16 Feb 2024 13:02:00 -0800 Subject: [PATCH] [torch-mlir][sparse][NFC] fixed typo (#2917) grammar police --- test/python/fx_importer/sparse_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/python/fx_importer/sparse_test.py b/test/python/fx_importer/sparse_test.py index 679eede5b1a7..e936e40cb039 100644 --- a/test/python/fx_importer/sparse_test.py +++ b/test/python/fx_importer/sparse_test.py @@ -98,7 +98,7 @@ def sparse_export( annotation sparse parameters with their actual sparse layout attributes. This temporary solution accelerates testing torch-mlir with PyTorch sparse tensors until the issue is - resovled. + resolved. """ # Convert all arguments to dense. dargs = tuple(a.to_dense() if a.layout in SPARSE_LAYOUTS else a for a in args)