Files
pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h

16 lines
457 B
C++

// Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#pragma once
#include <ATen/ATen.h>
namespace torch::distributed::c10d::quantization {
at::Tensor _float_to_bfloat16_cuda(const at::Tensor& input);
at::Tensor _bfloat16_to_float_cuda(const at::Tensor& input);
} // namespace torch::distributed::c10d::quantization