Reduce update (#783)

* Split reduction files to reduce compile times

* Add small and medium axis size specializations for row reductions

* Add non-row-reduction options for small and med kernels
This commit is contained in:
Jagrit Digani
2024-03-04 19:09:51 -08:00
committed by GitHub
parent c096a77b9b
commit 6686e61ca4
13 changed files with 949 additions and 667 deletions

View File

@@ -0,0 +1,176 @@
// Copyright © 2023-2024 Apple Inc.
#pragma once
#include <metal_atomic>
#include <metal_simdgroup>
#include "mlx/backend/metal/kernels/atomic.h"
#include "mlx/backend/metal/kernels/bf16.h"
#include "mlx/backend/metal/kernels/utils.h"
union bool4_or_uint {
bool4 b;
unsigned int i;
};
struct None {
template <typename T>
void atomic_update(device mlx_atomic<T>* out, T val, uint offset = 0) {
mlx_atomic_store_explicit(out, val, offset);
}
};
struct And {
bool simd_reduce(bool val) {
return simd_all(val);
};
static constexpr constant bool init = true;
void atomic_update(
device mlx_atomic<unsigned int>* out,
bool val,
int elem_idx,
int offset = 0) {
if (!val) {
bool4_or_uint update;
update.b = {true, true, true, true};
update.b[elem_idx] = false;
mlx_atomic_fetch_and_explicit(out, update.i, offset);
}
}
void atomic_update(device mlx_atomic<bool>* out, bool val, uint offset = 0) {
if (!val) {
mlx_atomic_store_explicit(out, val, offset);
}
}
// Non atomic update
void update(device bool* out, bool val) {
*out &= val;
}
// Operator
bool operator()(bool a, bool b) {
return a && b;
}
};
struct Or {
bool simd_reduce(bool val) {
return simd_any(val);
};
static constexpr constant bool init = false;
void atomic_update(
device mlx_atomic<unsigned int>* out,
bool val,
uint elem_idx,
uint offset = 0) {
if (val) {
bool4_or_uint update;
update.b = {false, false, false, false};
update.b[elem_idx] = true;
mlx_atomic_fetch_or_explicit(out, update.i, offset);
}
}
void atomic_update(device mlx_atomic<bool>* out, bool val, uint offset = 0) {
if (val) {
mlx_atomic_store_explicit(out, val, offset);
}
}
// Non atomic update
void update(device bool* out, bool val) {
*out |= val;
}
// Operator
bool operator()(bool a, bool b) {
return a || b;
}
};
template <typename U>
struct Sum {
template <typename T>
T simd_reduce(T val) {
return simd_sum(val);
};
static constexpr constant U init = U(0);
template <typename T>
void atomic_update(device mlx_atomic<T>* out, T val, uint offset = 0) {
mlx_atomic_fetch_add_explicit(out, val, offset);
}
// Operator
U operator()(U a, U b) {
return a + b;
}
};
template <typename U>
struct Prod {
template <typename T>
T simd_reduce(T val) {
return simd_product(val);
};
static constexpr constant U init = U(1);
template <typename T>
void atomic_update(device mlx_atomic<T>* out, T val, uint offset = 0) {
mlx_atomic_fetch_mul_explicit(out, val, offset);
}
// Operator
U operator()(U a, U b) {
return a * b;
}
};
template <typename U>
struct Min {
template <typename T>
T simd_reduce(T val) {
return simd_min(val);
};
static constexpr constant U init = Limits<U>::max;
template <typename T>
void atomic_update(device mlx_atomic<T>* out, T val, uint offset = 0) {
mlx_atomic_fetch_min_explicit(out, val, offset);
}
// Operator
U operator()(U a, U b) {
return a < b ? a : b;
}
};
template <typename U>
struct Max {
template <typename T>
T simd_reduce(T val) {
return simd_max(val);
};
static constexpr constant U init = Limits<U>::min;
template <typename T>
void atomic_update(device mlx_atomic<T>* out, T val, uint offset = 0) {
mlx_atomic_fetch_max_explicit(out, val, offset);
}
// Operator
U operator()(U a, U b) {
return a > b ? a : b;
}
};