This repository was archived by the owner on Mar 28, 2023. It is now read-only.
forked from llvm/llvm-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 130
[ESIMD] Add a test for imul() intrinsic #1566
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The intrinsic multiplies 32-bit scalar/vector by 32-bit scalar/vector and returns the 64-bit result as 2 32-bit scalars/vectors (with low halves and high halves). Signed-off-by: Vyacheslav N Klochkov <[email protected]>
/verify with intel/llvm#8176 |
fineg74
approved these changes
Feb 7, 2023
v-klochkov
added a commit
to intel/llvm
that referenced
this pull request
Feb 7, 2023
Previously the operation supported only vector-by-scalar, scalar-by-vector and scalar-by-scalar multiplication. This patch enables vector-by-vector multiplication as well. The corresponding LIT test PR: intel/llvm-test-suite#1566 Signed-off-by: Vyacheslav N Klochkov <[email protected]> Signed-off-by: Vyacheslav N Klochkov <[email protected]>
This fail is unrelated to this PR: This fail is expected for pre-ci-linux and pre-ci-windows. This test passes with Jenkins/llvm-test-suite bot: |
v-klochkov
added a commit
to v-klochkov/llvm-test-suite
that referenced
this pull request
Feb 14, 2023
The test was disabled due to false-alarm. The cases/PRs reporting this test as 'unrelated fail' used _old_ compiler with _new_ test. All such PRs had CI runs with the test failed at compilation. Even though both the PR and LIT tests were merged at same hour, the compiled used by CI was still old, but the test was new. PR: intel/llvm#8176 PR-LIT: intel#1566 Signed-off-by: Vyacheslav N Klochkov <[email protected]>
v-klochkov
added a commit
that referenced
this pull request
Feb 16, 2023
The test was disabled due to false-alarm. The cases/PRs reporting this test as 'unrelated fail' used _old_ compiler with _new_ test. All such PRs had CI runs with the test failed at compilation. Even though both the PR and LIT tests were merged at same hour, the compiled used by CI was still old, but the test was new. PR: intel/llvm#8176 PR-LIT: #1566 Signed-off-by: Vyacheslav N Klochkov <[email protected]>
myler
pushed a commit
to myler/llvm-test-suite
that referenced
this pull request
Mar 22, 2023
[ESIMD] Add a test for imul intrinsic The intrinsic multiplies 32-bit scalar/vector by 32-bit scalar/vector and returns the 64-bit result as 2 32-bit scalars/vectors (with low halves and high halves). Signed-off-by: Vyacheslav N Klochkov <[email protected]>
aelovikov-intel
pushed a commit
to aelovikov-intel/llvm
that referenced
this pull request
Mar 27, 2023
[ESIMD] Add a test for imul intrinsic The intrinsic multiplies 32-bit scalar/vector by 32-bit scalar/vector and returns the 64-bit result as 2 32-bit scalars/vectors (with low halves and high halves). Signed-off-by: Vyacheslav N Klochkov <[email protected]>
aelovikov-intel
pushed a commit
to aelovikov-intel/llvm
that referenced
this pull request
Mar 27, 2023
The test was disabled due to false-alarm. The cases/PRs reporting this test as 'unrelated fail' used _old_ compiler with _new_ test. All such PRs had CI runs with the test failed at compilation. Even though both the PR and LIT tests were merged at same hour, the compiled used by CI was still old, but the test was new. PR: intel#8176 PR-LIT: intel/llvm-test-suite#1566 Signed-off-by: Vyacheslav N Klochkov <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The intrinsic multiplies 32-bit scalar/vector by 32-bit scalar/vector and returns the 64-bit result as 2 32-bit scalars/vectors (with low halves and high halves).
This PR tests the changes in compiler: intel/llvm#8176
Signed-off-by: Vyacheslav N Klochkov [email protected]