-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.rs
More file actions
159 lines (140 loc) · 5.56 KB
/
build.rs
File metadata and controls
159 lines (140 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright 2025 Peter Garfield Bower
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::env;
use std::fs;
use std::path::Path;
/// True if `feature` is listed in comma-separated `CARGO_CFG_TARGET_FEATURE`
fn has_feature(list: &str, feature: &str) -> bool {
list.split(',').any(|f| f == feature)
}
fn main() {
////////////////////////////////////////////////////////////////
// C-FFI Integration tests
////////////////////////////////////////////////////////////////
#[cfg(feature = "c_ffi_tests")]
cc::Build::new()
.file("tests/c_inspect_arrow.c")
.compile("cinspect_arrow");
#[cfg(feature = "c_ffi_tests")]
println!("cargo:rerun-if-changed=tests/c_inspect_arrow.c");
// Target triple features supplied by `cargo` (`--print cfg`)
let arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap_or_default();
let feats = env::var("CARGO_CFG_TARGET_FEATURE").unwrap_or_default();
////////////////////////////////////////////////////////////////
// SIMD Build constants for Arithmetic and Bitmask Kernels
////////////////////////////////////////////////////////////////
// w8 == 8-bits, w16 == 16-bits, w32 == 32-bits, w64 == 64-bits.
//
// ==> for u8, u16, u32/f32, u64/f64 lane counts
//
// These become constants after the build process
// i.e., `W8` has the right number of lanes for U8, etc.
// Allow override via environment variable
// Format: SIMD_LANES_OVERRIDE="64,32,16,8"
let override_lanes = env::var("SIMD_LANES_OVERRIDE").ok();
let (w8, w16, w32, w64) = if let Some(val) = override_lanes {
let parts: Vec<_> = val.split(',').map(|s| s.trim().parse::<usize>()).collect();
if parts.len() == 4 && parts.iter().all(|r| r.is_ok()) {
let vals: Vec<usize> = parts.into_iter().map(|r| r.unwrap()).collect();
println!("cargo:warning=SIMD_LANES_OVERRIDE applied: {:?}", vals);
(vals[0], vals[1], vals[2], vals[3])
} else {
panic!(
"Invalid SIMD_LANES_OVERRIDE. Expected 4 comma-separated integers, e.g., \"64,32,16,8\""
);
}
} else {
match arch.as_str() {
// x86 / x86_64
"x86_64" | "x86" => {
if has_feature(&feats, "avx512f") {
(64, 32, 16, 8)
}
// 512-bit
else if has_feature(&feats, "avx2") {
(32, 16, 8, 4)
}
// 256-bit
else if has_feature(&feats, "sse2") {
(16, 8, 4, 2)
}
// 128-bit
else {
(8, 4, 2, 1)
} // scalar/soft
}
// 64-bit ARM
// All aarch64 CPUs have NEON (128-bit) by spec; if it was
// explicitly disabled via `-C target-feature=-neon`, fall back.
"aarch64" => {
if has_feature(&feats, "neon") {
(16, 8, 4, 2)
} else {
(8, 4, 2, 1)
}
}
// wasm32 with or without SIMD
"wasm32" => {
if has_feature(&feats, "simd128") {
(16, 8, 4, 2)
} else {
(8, 4, 2, 1)
}
}
// anything else
_ => (8, 4, 2, 1),
}
};
// Writes to a consts file, and reads at run-time for a dep-free lazy static
let out_path = Path::new(&env::var("OUT_DIR").unwrap()).join("simd_lanes.rs");
// The below widths are for each type that has that width, so the larger ones
// e.g., W64 are actually smaller. I.e., W64 is for i64, etc., but less i64's
// fit than W8 (U8), etc.
fs::write(
&out_path,
format!(
"
/// Auto-generated SIMD lane widths from build.rs
/// SIMD lane count for 8-bit elements (u8, i8).
/// Determined at build time based on target architecture capabilities,
/// or overridden via `SIMD_LANES_OVERRIDE`.
#[allow(non_upper_case_globals)]
#[allow(dead_code)]
pub const W8: usize = {w8};
/// SIMD lane count for 16-bit elements (u16, i16).
/// Determined at build time based on target architecture capabilities,
/// or overridden via `SIMD_LANES_OVERRIDE`.
#[allow(non_upper_case_globals)]
#[allow(dead_code)]
pub const W16: usize = {w16};
/// SIMD lane count for 32-bit elements (u32, i32, f32).
/// Determined at build time based on target architecture capabilities,
/// or overridden via `SIMD_LANES_OVERRIDE`.
#[allow(non_upper_case_globals)]
#[allow(dead_code)]
pub const W32: usize = {w32};
/// SIMD lane count for 64-bit elements (u64, i64, f64).
/// Determined at build time based on target architecture capabilities,
/// or overridden via `SIMD_LANES_OVERRIDE`.
#[allow(non_upper_case_globals)]
#[allow(dead_code)]
pub const W64: usize = {w64};
"
),
)
.unwrap();
println!("cargo:rerun-if-env-changed=CARGO_CFG_TARGET_ARCH");
println!("cargo:rerun-if-env-changed=CARGO_CFG_TARGET_FEATURE");
println!("cargo:rerun-if-env-changed=SIMD_LANES_OVERRIDE");
}