From 51c025ad0267a7f6799c914e03be2bca55efcb0d Mon Sep 17 00:00:00 2001 From: Matthias Gehre Date: Fri, 10 May 2024 07:08:58 +0200 Subject: [PATCH 1/3] Fix submodule to existing commit --- externals/llvm-project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/llvm-project b/externals/llvm-project index a8d87d17943a..fa72e6813bb0 160000 --- a/externals/llvm-project +++ b/externals/llvm-project @@ -1 +1 @@ -Subproject commit a8d87d17943a1c5e76bd1878db99670dc7594453 +Subproject commit fa72e6813bb05f5d13e7993f22c51cdb2ff8965a From c1ecdec030f9e75a820e755063c9bd0c2296c5df Mon Sep 17 00:00:00 2001 From: Matthias Gehre Date: Fri, 10 May 2024 07:14:45 +0200 Subject: [PATCH 2/3] Pin torch versions to versions that we kept --- pytorch-requirements.txt | 2 +- torchvision-requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pytorch-requirements.txt b/pytorch-requirements.txt index 3ab13460e59a..ca574a655eac 100644 --- a/pytorch-requirements.txt +++ b/pytorch-requirements.txt @@ -4,4 +4,4 @@ # release page, and we use this page as an additional source for the wheels. -f https://xilinx.github.io/torch-mlir/package-index/ --pre -torch==2.3.0.dev20240307 +torch==2.3.0.dev20240108 diff --git a/torchvision-requirements.txt b/torchvision-requirements.txt index 2bae4d4fd6b3..ff2205b4ef48 100644 --- a/torchvision-requirements.txt +++ b/torchvision-requirements.txt @@ -4,4 +4,4 @@ # release page, and we use this page as an additional source for the wheels. -f https://xilinx.github.io/torch-mlir/package-index/ --pre -torchvision==0.18.0.dev20240307 +torchvision==0.18.0.dev20240108 From 52b08ca2604c4f22ccb258f0f673a001e11188b2 Mon Sep 17 00:00:00 2001 From: Matthias Gehre Date: Fri, 10 May 2024 09:35:11 +0200 Subject: [PATCH 3/3] New llvm version makes more tests pass --- projects/pt1/e2e_testing/xfail_sets.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/projects/pt1/e2e_testing/xfail_sets.py b/projects/pt1/e2e_testing/xfail_sets.py index 05343f20c1dd..671df14b3d34 100644 --- a/projects/pt1/e2e_testing/xfail_sets.py +++ b/projects/pt1/e2e_testing/xfail_sets.py @@ -1027,6 +1027,7 @@ "ElementwiseAddScalarFloatModule_basic", "ElementwiseAddScalarInt64Module_basic", "ElementwiseAddScalarIntModule_basic", + "ElementwiseAddScalar_NumToTensorFloat_Module_basic", "ElementwiseAddScalar_TensorLiteralInt32_Module_basic", "ElementwiseAtenDivIntScalarModule_basic", "ElementwiseAtenLogicalAndOpModule_basic", @@ -1078,6 +1079,7 @@ "ElementwiseCloneContiguousModule_basic", "ElementwiseCloneModule_basic", "ElementwiseDivScalarModule_basic", + "ElementwiseDivTensorFloatModule_basic", "ElementwiseDivTensorIntegerModule_basic", "ElementwiseDivTensorUnsignedIntegerModule_basic", "ElementwiseEluModule_basic", @@ -1138,6 +1140,7 @@ "ElementwiseMulScalarModule_basic", "ElementwiseMulScalarModule_float", "ElementwiseMulScalarModule_int", + "ElementwiseMulTensorFloatModule_basic", "ElementwiseMulTensorIntModule_basic", "ElementwiseNeFloatScalarModule_basic", "ElementwiseNeFloatTensorModule_basic", @@ -1156,6 +1159,7 @@ "ElementwiseReciprocalModule_basic", "ElementwiseRelu6Module_basic", "ElementwiseReluModule_basic", + "ElementwiseRemainderScalarModule_Bool_basic", "ElementwiseRemainderScalarModule_Float_basic", "ElementwiseRemainderScalarModule_Int_basic", "ElementwiseRemainderScalarModule_Int_Float_basic", @@ -1172,6 +1176,8 @@ "ElementwiseUnaryModule_basic", "ElementwiseUnsqueezeBroadcastModule_basic", "ElementwiseWhereScalarModule_basic", + "ElementwiseWhereScalarOtherStaticModule_basic", + "ElementwiseWhereScalarSelfStaticModule_basic", "ElementwiseNanToNumModule_Basic", "EmbeddingModule1DIndices_basic", "EmbeddingModuleI32Static_basic", @@ -1197,6 +1203,8 @@ "GatherStaticModule_basic", "GeluBackwardModule_basic", "GluStaticModule_basic", + "GroupNormModule_basic", + "GroupNormNoWeightAndBiasModule_basic", "HardsigmoidModule_basic", "HardsigmoidRandomModule_basic", "HardswishModule_basic", @@ -1226,6 +1234,7 @@ "LinalgVectorNormKeepDimModule_basic", "LinalgVectorNormModule_basic", "LinalgNormKeepDimModule_basic", + "LogSoftmaxIntModule_basic", "MaskedFillScalarDefaultModule_basic", "MaskedFillScalarFloatValueModule_basic", "MaskedFillScalarFloatValueStaticModule_basic", @@ -1245,6 +1254,7 @@ "MoveDimIntModule_basic", "MoveDimIntNegativeIndexModule_basic", "MseLossNoReductionModule_basic", + "NativeGroupNormModule_basic", "NativeLayerNormModule4D_basic", "NewEmptyModuleBool_basic", "NewEmptyModuleDefaultDtype_basic", @@ -1342,6 +1352,7 @@ "SliceOutOfUpperBoundIndexStaticModule_basic", "SliceSizeTwoStepDivisibleStaticModule_basic", "SliceStaticModule_basic", + "SoftmaxIntArgTypeF64Module_basic", "SoftmaxIntModule_basic", "SoftmaxIntNegDimModule_basic", "_SoftmaxModule_basic", @@ -1476,8 +1487,6 @@ "Conv2dNoPaddingModule_basic", "Conv2dWithPaddingDilationStrideModule_basic", "Conv2dWithPaddingModule_basic", - - "AtenInstanceNormModule_basic", } MAKE_FX_TOSA_CRASHING_SET = {"CumsumModule_basic"}