mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 09:21:16 +08:00
11 lines
171 B
C++
11 lines
171 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#pragma once
|
|
|
|
namespace mlx::core::cu {
|
|
|
|
/* Check if the CUDA backend is available. */
|
|
bool is_available();
|
|
|
|
} // namespace mlx::core::cu
|