mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-26 10:41:14 +08:00
12 lines
184 B
C++
12 lines
184 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace mlx::core::rocm {
|
|
|
|
void* allocate(size_t size);
|
|
void deallocate(void* ptr);
|
|
|
|
} // namespace mlx::core::rocm
|