// Copyright © 2022 Apple Inc. #pragma once #include namespace at { namespace detail { C10_EXPORT TensorBase empty_mps( IntArrayRef size, c10::optional dtype_opt, c10::optional layout_opt, c10::optional device_opt, c10::optional pin_memory_opt, c10::optional memory_format_opt); C10_EXPORT TensorBase empty_mps( IntArrayRef size, const TensorOptions &options); C10_EXPORT TensorBase empty_strided_mps( IntArrayRef size, IntArrayRef stride, ScalarType dtype, c10::optional device_opt); C10_EXPORT TensorBase empty_strided_mps( IntArrayRef size, IntArrayRef stride, const TensorOptions &options); } // namespace detail } // namespace at