scale_check_overflow.cpp 909 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <torch/extension.h>

void scale_check_overflow_cuda(const at::Tensor& d_grads, float scale, const at::Tensor& d_buf);

void scale_check_overflow(at::Tensor grads, float scale, at::Tensor overflow_buf)
{ 
  AT_CHECK(grads.type().is_cuda(), "grads must be a CUDA tensor");
  AT_CHECK(grads.is_contiguous(), "grads must be contiguous");
  AT_CHECK(overflow_buf.type().is_cuda(), "overflow_buf must be a CUDA tensor");
  AT_CHECK(overflow_buf.is_contiguous(), "overflow_buf must be contiguous");
  // Make sure we are downscaling the FP32 master grads
  AT_CHECK(grads.type().scalarType() == at::ScalarType::Float, 
    "grads supplied to scale_check_overflow should be fp32 (master grads).")

  scale_check_overflow_cuda(grads, scale, overflow_buf);
}

PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
  m.def("scale_check_overflow", &scale_check_overflow, "Fused overflow check + scale for FP32 tensors");
}