mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-23 10:02:12 +08:00
43 lines
846 B
C++
43 lines
846 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#include <stdexcept>
|
|
|
|
#include "mlx/backend/metal/metal.h"
|
|
#include "mlx/fast.h"
|
|
|
|
namespace mlx::core {
|
|
|
|
namespace metal {
|
|
|
|
bool is_available() {
|
|
return false;
|
|
}
|
|
|
|
void start_capture(std::string) {}
|
|
void stop_capture() {}
|
|
|
|
const std::unordered_map<std::string, std::variant<std::string, size_t>>&
|
|
device_info() {
|
|
throw std::runtime_error(
|
|
"[metal::device_info] Cannot get device info without metal backend");
|
|
};
|
|
|
|
} // namespace metal
|
|
|
|
namespace fast {
|
|
|
|
MetalKernelFunction metal_kernel(
|
|
const std::string&,
|
|
const std::vector<std::string>&,
|
|
const std::vector<std::string>&,
|
|
const std::string&,
|
|
const std::string&,
|
|
bool ensure_row_contiguous,
|
|
bool atomic_outputs) {
|
|
throw std::runtime_error("[metal_kernel] No GPU back-end.");
|
|
}
|
|
|
|
} // namespace fast
|
|
|
|
} // namespace mlx::core
|