test_cast_transpose.cu 4.71 KB
Newer Older
Przemek Tredak's avatar
Przemek Tredak committed
1
/*************************************************************************
2
 * Copyright (c) 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Przemek Tredak's avatar
Przemek Tredak committed
3
4
5
6
 *
 * See LICENSE for license information.
 ************************************************************************/

Tim Moon's avatar
Tim Moon committed
7
#include <cstring>
Przemek Tredak's avatar
Przemek Tredak committed
8
#include <iomanip>
Tim Moon's avatar
Tim Moon committed
9
10
#include <iostream>
#include <memory>
Przemek Tredak's avatar
Przemek Tredak committed
11
#include <random>
Tim Moon's avatar
Tim Moon committed
12
13
14
15
16

#include <cuda_bf16.h>
#include <cuda_runtime.h>
#include <gtest/gtest.h>

17
#include <transformer_engine/cast.h>
Przemek Tredak's avatar
Przemek Tredak committed
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "../test_common.h"

using namespace transformer_engine;

namespace {

template <typename InputType, typename OutputType>
void compute_ref(const InputType *data, OutputType *output_c, OutputType *output_t,
                 const size_t N, const size_t H,
                 float *amax, float scale) {
  using compute_t = float;
  compute_t current_max = -1e100;
  for (size_t i = 0; i < N; ++i) {
    for (size_t j = 0; j < H; ++j) {
      compute_t current = static_cast<compute_t>(data[i * H + j]);
      current_max = fmaxf(current_max, fabsf(current));
      output_c[i * H + j] = OutputType(scale * current);
      output_t[j * N + i] = OutputType(scale * current);
    }
  }
  *amax = current_max;
}

41
42

// delayed tensor scaling test
Przemek Tredak's avatar
Przemek Tredak committed
43
44
45
46
47
48
49
template <typename InputType, typename OutputType>
void performTest(const size_t N, const size_t H) {
  using namespace test;

  DType itype = TypeInfo<InputType>::dtype;
  DType otype = TypeInfo<OutputType>::dtype;

50
51
  Tensor input("input", { N, H }, itype);
  Tensor output("output", { N, H }, otype, true, true);
Przemek Tredak's avatar
Przemek Tredak committed
52
53
54
55

  std::unique_ptr<OutputType[]> ref_output_c = std::make_unique<OutputType[]>(N * H);
  std::unique_ptr<OutputType[]> ref_output_t = std::make_unique<OutputType[]>(N * H);

56
  fillUniform(&input);
57
  setRandomScale(&output);
Przemek Tredak's avatar
Przemek Tredak committed
58

59
  nvte_quantize(input.data(), output.data(), 0);
Przemek Tredak's avatar
Przemek Tredak committed
60
61

  float ref_amax;
62
  compute_ref<InputType, OutputType>(input.rowwise_cpu_dptr<InputType>(), ref_output_c.get(),
Przemek Tredak's avatar
Przemek Tredak committed
63
                                     ref_output_t.get(), N, H, &ref_amax,
64
                                     output.scale());
Przemek Tredak's avatar
Przemek Tredak committed
65
66
67
68

  cudaDeviceSynchronize();
  auto err = cudaGetLastError();
  ASSERT_EQ(err, cudaSuccess) << cudaGetErrorString(err);
69
70
  if (isFp8Type(otype)) {
    auto [atol_amax, rtol_amax] = getTolerances(DType::kFloat32);
71
72
73
    compareResults("amax", output.amax(), ref_amax, atol_amax, rtol_amax);
    float ref_scale_inv = 1.f / output.scale();
    compareResults("scale_inv", output.rowwise_scale_inv(), ref_scale_inv, atol_amax, rtol_amax);
74
  }
Przemek Tredak's avatar
Przemek Tredak committed
75
  auto [atol, rtol] = getTolerances(otype);
76
77
  compareResults("output_c", output, ref_output_c.get(), true, atol, rtol);
  compareResults("output_t", output, ref_output_t.get(), false, atol, rtol);
Przemek Tredak's avatar
Przemek Tredak committed
78
79
}

80

Przemek Tredak's avatar
Przemek Tredak committed
81
82
83
84
85
86
std::vector<std::pair<size_t, size_t>> test_cases = {{2048, 12288},
                                                     {768, 1024},
                                                     {256, 65536},
                                                     {65536, 128},
                                                     {256, 256},
                                                     {120, 2080},
87
88
89
90
                                                     {8, 8},
                                                     {1, 3221},       // Prime 456
                                                     {2333, 1},       // Prime 345
                                                     {1481, 677}};    // Primes 234, 123
Przemek Tredak's avatar
Przemek Tredak committed
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
}  // namespace

class CTTestSuite : public ::testing::TestWithParam<std::tuple<transformer_engine::DType,
                                                               transformer_engine::DType,
                                                               std::pair<size_t, size_t>>> {};

TEST_P(CTTestSuite, TestCastTranspose) {
  using namespace transformer_engine;
  using namespace test;

  const DType input_type = std::get<0>(GetParam());
  const DType output_type = std::get<1>(GetParam());
  const auto size = std::get<2>(GetParam());

  TRANSFORMER_ENGINE_TYPE_SWITCH_ALL(input_type, InputType,
    TRANSFORMER_ENGINE_TYPE_SWITCH_ALL(output_type, OutputType,
107
      // delayed tensor scaling
Przemek Tredak's avatar
Przemek Tredak committed
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
      performTest<InputType, OutputType>(size.first, size.second);
    );
  );
}



INSTANTIATE_TEST_SUITE_P(
  OperatorTest,
  CTTestSuite,
  ::testing::Combine(
      ::testing::Values(DType::kFloat32, DType::kBFloat16, DType::kFloat16),
      ::testing::ValuesIn(test::all_fp_types),
      ::testing::ValuesIn(test_cases)),
  [](const testing::TestParamInfo<CTTestSuite::ParamType>& info) {
    std::string name = test::typeName(std::get<0>(info.param)) + "X" +
                       test::typeName(std::get<1>(info.param)) + "X" +
                       std::to_string(std::get<2>(info.param).first) + "X" +
                       std::to_string(std::get<2>(info.param).second);
    return name;
  });