Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,8 @@ jobs:
cargo run --bin=stdarch-gen-loongarch --release -- crates/stdarch-gen-loongarch/lasx.spec
git diff --exit-code
- name: Check hexagon
env:
STDARCH_GEN_MODE: check
run: |
cargo run -p stdarch-gen-hexagon --release
git diff --exit-code
Expand Down
62 changes: 62 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/core_arch/src/hexagon/v128.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This code is automatically generated. DO NOT MODIFY.
//! Hexagon HVX 128-byte vector mode intrinsics
//!
//! This module provides intrinsics for the Hexagon Vector Extensions (HVX)
Expand Down
1 change: 1 addition & 0 deletions crates/core_arch/src/hexagon/v64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This code is automatically generated. DO NOT MODIFY.
//! Hexagon HVX 64-byte vector mode intrinsics
//!
//! This module provides intrinsics for the Hexagon Vector Extensions (HVX)
Expand Down
7 changes: 7 additions & 0 deletions crates/stdarch-gen-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "stdarch-gen-common"
version = "0.1.0"
edition = "2024"

[dependencies]
tempfile = "3"
Loading