Skip to content

Commit 0e2da7a

Browse files
author
Derek Gerstmann
committedFeb 11, 2025·
Clang format pass
1 parent 9518aa0 commit 0e2da7a

6 files changed

+12
-13
lines changed
 

‎src/runtime/aarch64_cpu_features.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ void set_platform_features(CpuFeatures *) {
118118
} // namespace Runtime
119119
} // namespace Halide
120120

121-
122121
extern "C" {
123122

124123
WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *features) {
@@ -136,5 +135,5 @@ WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *feature
136135

137136
return halide_error_code_success;
138137
}
139-
138+
140139
} // extern "C" linkage

‎src/runtime/arm_cpu_features.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *feature
116116

117117
return halide_error_code_success;
118118
}
119-
120-
} // extern "C" linkage
119+
120+
} // extern "C" linkage

‎src/runtime/can_use_target.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ WEAK int halide_default_can_use_target_features(int count, const uint64_t *featu
4242
if (!halide_cpu_features_initialized) {
4343
CpuFeatures tmp;
4444
int error = halide_get_cpu_features(&tmp);
45-
if(error != halide_error_code_success) {
45+
if (error != halide_error_code_success) {
4646
halide_error(nullptr, "Internal error: halide_get_cpu_features failed!\n");
4747
return 0;
4848
}

‎src/runtime/cpu_features.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,27 @@ struct CpuFeatures {
2020
// (always a subset of 'known')
2121
};
2222

23-
ALWAYS_INLINE void halide_set_known_cpu_feature(CpuFeatures* features, int i) {
23+
ALWAYS_INLINE void halide_set_known_cpu_feature(CpuFeatures *features, int i) {
2424
features->known[i >> 6] |= ((uint64_t)1) << (i & 63);
2525
}
2626

27-
ALWAYS_INLINE void halide_set_available_cpu_feature(CpuFeatures* features, int i) {
27+
ALWAYS_INLINE void halide_set_available_cpu_feature(CpuFeatures *features, int i) {
2828
features->available[i >> 6] |= ((uint64_t)1) << (i & 63);
2929
}
3030

31-
ALWAYS_INLINE bool halide_test_known_cpu_feature(CpuFeatures* features, int i) {
31+
ALWAYS_INLINE bool halide_test_known_cpu_feature(CpuFeatures *features, int i) {
3232
return (features->known[i >> 6] & ((uint64_t)1) << (i & 63)) != 0;
3333
}
3434

35-
ALWAYS_INLINE bool halide_test_available_cpu_feature(CpuFeatures* features, int i) {
35+
ALWAYS_INLINE bool halide_test_available_cpu_feature(CpuFeatures *features, int i) {
3636
return (features->available[i >> 6] & ((uint64_t)1) << (i & 63)) != 0;
3737
}
3838

3939
} // namespace Internal
4040
} // namespace Runtime
4141
} // namespace Halide
4242

43-
// NOTE: This method is not part of the public API, but we push it into extern "C" to
43+
// NOTE: This method is not part of the public API, but we push it into extern "C" to
4444
// avoid name mangling mismatches between platforms. See: https://github.com/halide/Halide/issues/8565
4545
extern "C" WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *features);
4646

‎src/runtime/powerpc_cpu_features.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *feature
2828
return halide_error_code_success;
2929
}
3030

31-
} // extern "C" linkage
31+
} // extern "C" linkage

‎src/runtime/x86_cpu_features.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@ WEAK int halide_get_cpu_features(Halide::Runtime::Internal::CpuFeatures *feature
134134
Halide::Runtime::Internal::cpuid(info3, 7, 1);
135135
if ((info3[0] & avxvnni) == avxvnni &&
136136
(info3[0] & avx512bf16) == avx512bf16) {
137-
Halide::Runtime::Internal::halide_set_available_cpu_feature(features, halide_target_feature_avx512_sapphirerapids);
137+
Halide::Runtime::Internal::halide_set_available_cpu_feature(features, halide_target_feature_avx512_sapphirerapids);
138138
}
139139
}
140140
}
141141
}
142142
return halide_error_code_success;
143143
}
144144

145-
} // extern "C" linkage
145+
} // extern "C" linkage

0 commit comments

Comments
 (0)
Please sign in to comment.