From c14c867e31a99f099f589d6afca358ff0d06300d Mon Sep 17 00:00:00 2001 From: Aart Bik Date: Fri, 16 Feb 2024 12:53:26 -0800 Subject: [PATCH] [torch-mlir][sparse][NFC] fixed typo --- 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)