increase indentation per 4-spaces rule

This commit is contained in:
Michael Potter 2023-11-12 18:17:39 -08:00 committed by GitHub
parent 287bc68573
commit 5b0d76f665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1274,10 +1274,10 @@ static float make_qkx2_quants(int n, int nmax, const float * restrict x, const f
float sum_w = weights[0];
float sum_x = sum_w * x[0];
#if defined(__APPLE__) && defined(__clang_major__) && __clang_major__ >= 15
// use 'volatile' to prevent unroll and work around a bug in Apple clang 15.x.x with -O3 flag
for (volatile int i = 1; i < n; ++i) {
// use 'volatile' to prevent unroll and work around a bug in Apple clang 15.x.x with -O3 flag
for (volatile int i = 1; i < n; ++i) {
#else
for (int i = 1; i < n; ++i) {
for (int i = 1; i < n; ++i) {
#endif
if (x[i] < min) min = x[i];
if (x[i] > max) max = x[i];