#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION) #pragma once #include #include namespace at::cuda::detail { TORCH_API void bf16bf16_grouped_mm( at::Tensor mat_a, // bf16 at::Tensor mat_b, // bf16 std::optional offs, std::optional bias, // BF16 at::Tensor& out); } // namespace at::cuda::detail #else #error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined." #endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)