-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Tracking Issue for x86_amx_intrinsics
#126622
Labels
A-SIMD
Area: SIMD (Single Instruction Multiple Data)
A-target-feature
Area: Enabling/disabling target features like AVX, Neon, etc.
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
Comments
sayantn
added
the
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
label
Jun 18, 2024
This was referenced Jun 18, 2024
rustbot
added
A-SIMD
Area: SIMD (Single Instruction Multiple Data)
A-target-feature
Area: Enabling/disabling target features like AVX, Neon, etc.
labels
Jun 24, 2024
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jul 12, 2024
Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
workingjubilee
added a commit
to workingjubilee/rustc
that referenced
this issue
Jul 12, 2024
Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jul 12, 2024
Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jul 12, 2024
Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Jul 12, 2024
Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jul 12, 2024
Rollup merge of rust-lang#126639 - sayantn:amx, r=Amanieu Add AMX target-features and `x86_amx_intrinsics` feature flag This is an effort towards rust-lang#126622. This adds support for all 5 target-features for `AMX`, and introduces the feature flag `x86_amx_intrinsics`, which would gate these target-features and the yet-to-be-implemented amx intrinsics in stdarch.
16 tasks
We will need to understand the ABI impacts of AMX, if any. |
Afaik, AMX doesn't change any ABI. Although we would need to change some things in inline asm to support |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-SIMD
Area: SIMD (Single Instruction Multiple Data)
A-target-feature
Area: Enabling/disabling target features like AVX, Neon, etc.
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
This issue tracks the integration of Intel
AMX
instruction family to Rust.The feature gate for the issue is
#![feature(x86_amx_intrinsics)]
.Steps
target-feature
attributes and runtime detection for themPublic API
The following target features and all their associated intrinsics and types
amx-tile
amx-int8
amx-bf16
amx-fp16
amx-complex
Implementation History
x86_amx_intrinsics
feature flag #126639AMX
target-features stdarch#1587The text was updated successfully, but these errors were encountered: