Files
rust/library/stdarch
Tsukasa OI 2d2390ea39 std_detect: Remove RV32E support attempt on Linux (RISC-V)
Because the current lowest requirements to run the Linux kernel on RISC-V is
RV{32,64}IMA (with 32 general purpose registers) plus some features,
RV32E (with only 16 GPRs) is not currently supported.

Since it's not sure whether current implemented method will work for future
Linux versions even if the minimum requirements are lowered, the support for
RV32E (to be more specific, an attempt to do that) is removed for now.
2025-04-16 18:30:32 +00:00
..
hmm
2025-04-11 11:30:32 +00:00
2025-02-14 16:40:26 +00:00
2023-05-15 17:34:11 +02:00
2025-01-16 14:29:19 +00:00
2017-09-25 12:43:06 -07:00
2017-09-25 12:43:06 -07:00
2025-01-16 14:29:19 +00:00

stdarch - Rust's standard library SIMD components

Actions Status

Crates

This repository contains two main crates:

  • core_arch implements core::arch - Rust's core library architecture-specific intrinsics, and

  • std_detect implements std::detect - Rust's standard library run-time CPU feature detection.

The std::simd component now lives in the packed_simd_2 crate.