-
Notifications
You must be signed in to change notification settings - Fork 798
[SYCL][Joint Matrix][E2E] Uncomment the Joint Matrix tests for combination 32x32x16 #16191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,5 +12,7 @@ | |
|
|
||
| // -ffp-model=precise is added to not depend on compiler defaults. | ||
|
|
||
| // XFAIL: gpu | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! I have updated the test. |
||
| #include "common.hpp" | ||
| #include "joint_matrix_bf16_fill_k_cache_impl.hpp" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,7 @@ | |
| // tests to match the required format and in that case you should just update | ||
| // (i.e. reduce) the number and the list below. | ||
| // | ||
| // NUMBER-OF-XFAIL-WITHOUT-TRACKER: 77 | ||
| // NUMBER-OF-XFAIL-WITHOUT-TRACKER: 79 | ||
|
||
| // | ||
| // List of improperly XFAIL-ed tests. | ||
| // Remove the CHECK once the test has been properly XFAIL-ed. | ||
|
|
@@ -96,6 +96,8 @@ | |
| // CHECK-NEXT: Matrix/SG32/joint_matrix_prefetch.cpp | ||
| // CHECK-NEXT: Matrix/SG32/joint_matrix_rowmajorA_rowmajorB.cpp | ||
| // CHECK-NEXT: Matrix/SG32/joint_matrix_unaligned_k.cpp | ||
| // CHECK-NEXT: Matrix/joint_matrix_bf16_fill_k_cache_arg_dim.cpp | ||
| // CHECK-NEXT: Matrix/joint_matrix_bf16_fill_k_cache_runtime_dim.cpp | ||
|
||
| // CHECK-NEXT: Matrix/joint_matrix_bfloat16_colmajorA_colmajorB.cpp | ||
| // CHECK-NEXT: Matrix/joint_matrix_colA_rowB_colC.cpp | ||
| // CHECK-NEXT: Matrix/joint_matrix_int8_colmajorA_colmajorB.cpp | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add
// XFAIL-TRACKER: CMPLRLLVM-63710
so you don't increase number of xfail without tracker
Also, should you add the xfail on only
!igc-dev?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the suggestion! I have made the change.
These two tests are not supported in the
igc-devCI test because the commit in IGC has not yet been integrated into the driver. I will remove the XFAIL once the IGC change has been pull downed.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@YixingZhang007 ,
looking at the branch that is used for
igc-devhere https://github.com/intel/llvm/blob/sycl/devops/dependencies-igc-dev.jsonit should include your changes for runtime dimension support:
https://github.com/intel/intel-graphics-compiler/commits/6ee988a5948c6aaecbfe00605f52694c55cf1052/IGC/Compiler/Optimizer/OpenCLPasses/JointMatrixFuncsResolutionPass/JointMatrixFuncsResolutionPass.cpp
So, tests should be passing already with
igc-devin intel/llvm CI.What am I missing?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’ve noticed that the
igc_devCI test is not reflecting the IGC commits it's supposed to be testing. It seems to still be using an older version of IGC, likely the version set for the regular IGC.I’m experiencing the same issue with another LLVM PR (#15880), where my IGC commit should already be integrated into
igc_dev, but the testsget_coordinate_ops.cppis still failing due to errors that should have been addressed by that IGC commit. As a temporary approach, I’ve added XFAIL to the test while we wait for this issue to be resolved or until the regular IGC is updated to include the changes.Please let me know if this approach would work and if you have any suggestions! Thanks!
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@YixingZhang007 ,
"while we wait for this issue to be resolved" - does it mean someone is working on resolving the issue? If not, could you please submit the issue to https://github.com/intel/llvm/issues, so that it is reported, and we can assign someone to work on it?
@jsji , @sarnex , FYI
I'm OK with adding XFAIL, since we have this problem.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are working on something called
IGC 2I think, so maybe they enabled it by default?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intel/intel-graphics-compiler@4617a3e seems intended to me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have created an issue #16251 regarding this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If so, we need to make sure we softlink to libigc.so to libigc.so.2 for igc-dev now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah im gonna look at the issue and try to see what's going on, i gotta fix igc-dev containers first