mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-15 01:19:21 +08:00
12 lines
171 B
C++
12 lines
171 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#include "mlx/backend/cpu/available.h"
|
|
|
|
namespace mlx::core::cpu {
|
|
|
|
bool is_available() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace mlx::core::cpu
|