is_same_v Class — pytorch Architecture
Architecture documentation for the is_same_v class in AdaptiveMaxPoolKernel.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp lines 201–339
template <typename scalar_t>
typename std::enable_if_t<!std::is_same_v<scalar_t, at::opmath_type<scalar_t>>, void>
cpu_adaptive_max_pool2d_channels_last(
const Tensor& output_,
const Tensor& indices_,
const Tensor& input_,
IntArrayRef output_size) {
TORCH_CHECK(input_.ndimension() == 4,
"2d adaptive max pooling with channels last format supports tensors with 4 dims");
auto memory_format = at::MemoryFormat::ChannelsLast;
auto input = input_.contiguous(memory_format);
auto output = output_.contiguous(memory_format);
auto indices = indices_.contiguous(memory_format);
auto input_data = input.const_data_ptr<scalar_t>();
auto output_data = output.data_ptr<scalar_t>();
auto indices_data = indices.data_ptr<int64_t>();
int64_t nbatch = input.size(0);
int64_t channels = input.size(1);
int64_t input_height = input.size(2);
int64_t input_width = input.size(3);
int64_t output_height = output_size[0];
int64_t output_width = output_size[1];
using bVec = vec::Vectorized<scalar_t>;
using fVec = vec::Vectorized<float>;
using iVec = vec::Vectorized<int32_t>;
// need to make sure doesn't overflow
TORCH_CHECK(input_height * input_width <= std::numeric_limits<int32_t>::max());
// parallel on dim of N, H, W
at::parallel_for(0, nbatch * output_height * output_width, 0, [&](int64_t begin, int64_t end) {
int64_t n = 0;
int64_t oh = 0;
int64_t ow = 0;
data_index_init(begin, n, nbatch, oh, output_height, ow, output_width);
int64_t size = channels;
int64_t len = size - (size % bVec::size());
// temp buffer holding index with integer_t
auto index_buffer = std::make_unique<int32_t []>(len);
// temp buffer holding max value with float
auto max_arr = std::make_unique<float []>(size);
float* max = max_arr.get();
for (const auto i : c10::irange(begin, end)) {
int64_t ih0 = start_index(oh, output_height, input_height);
int64_t ih1 = end_index(oh, output_height, input_height);
int64_t iw0 = start_index(ow, output_width, input_width);
int64_t iw1 = end_index(ow, output_width, input_width);
scalar_t* out = output_data + i * channels;
int64_t* ind = indices_data + i * channels;
// Pass I: init out lane
iVec index0_ivec = iVec(ih0 * input_width + iw0);
fVec max_fvec = fVec(-std::numeric_limits<float>::infinity());
int64_t d1 = 0;
for (; d1 < len; d1 += fVec::size()) {
index0_ivec.store(index_buffer.get() + d1);
max_fvec.store(max + d1);
}
for (; d1 < size; d1++) {
ind[d1] = ih0 * input_width + iw0;
max[d1] = -std::numeric_limits<float>::infinity();
}
// Pass II: compute local max
for (int64_t ih = ih0; ih < ih1; ih ++) {
for (int64_t iw = iw0; iw < iw1; iw ++) {
const scalar_t* in = input_data + n * input_height * input_width * channels +
ih * input_width * channels + iw * channels;
int64_t d2 = 0;
for (; d2 < len; d2 += bVec::size()) {
iVec index_ivec = iVec(ih * input_width + iw);
bVec val_bvec = bVec::loadu(in + d2);
auto [val_fvec0, val_fvec1] = convert_to_float<scalar_t>(val_bvec);
iVec maxindex_ivec0 = iVec::loadu(index_buffer.get() + d2);
iVec maxindex_ivec1 = iVec::loadu(index_buffer.get() + d2 + iVec::size());
fVec maxval_fvec0 = fVec::loadu(max + d2);
fVec maxval_fvec1 = fVec::loadu(max + d2 + fVec::size());
// true = all ones, false = all zeros
fVec mask0 = (val_fvec0 > maxval_fvec0) | val_fvec0.isnan();
fVec mask1 = (val_fvec1 > maxval_fvec1) | val_fvec1.isnan();
iVec imask0 = vec::cast<int32_t>(mask0);
iVec imask1 = vec::cast<int32_t>(mask1);
fVec max_fvec0 = fVec::blendv(maxval_fvec0, val_fvec0, mask0);
fVec max_fvec1 = fVec::blendv(maxval_fvec1, val_fvec1, mask1);
iVec ind_ivec0 = iVec::blendv(maxindex_ivec0, index_ivec, imask0);
iVec ind_ivec1 = iVec::blendv(maxindex_ivec1, index_ivec, imask1);
max_fvec0.store(max + d2);
max_fvec1.store(max + d2 + fVec::size());
ind_ivec0.store(index_buffer.get() + d2);
ind_ivec1.store(index_buffer.get() + d2 + iVec::size());
}
for (; d2 < size; d2++) {
int64_t index = ih * input_width + iw;
float val = float(in[d2]);
int64_t maxindex = ind[d2];
float maxval = max[d2];
bool mask = (val > maxval) || std::isnan(val);
max[d2] = mask ? val : maxval;
ind[d2] = mask ? index : maxindex;
}
}
}
// Pass III: convert max values from float to bfloat16/Half
int64_t d3 = 0;
for (; d3 < len; d3 += bVec::size()) {
fVec max_fvec0 = fVec::loadu(max + d3);
fVec max_fvec1 = fVec::loadu(max + d3 + fVec::size());
bVec max_bvec = convert_from_float<scalar_t>(max_fvec0, max_fvec1);
max_bvec.store(out + d3);
}
for (; d3 < size; d3++) {
out[d3] = scalar_t(max[d3]);
}
// convert indice data type
vec::convert<int32_t, int64_t>(index_buffer.get(), ind, len);
// move on to next output index
data_index_step(n, nbatch, oh, output_height, ow, output_width);
}
});
if (!output_.is_contiguous(memory_format)) {
output_.copy_(output);
}
if (!indices_.is_contiguous(memory_format)) {
indices_.copy_(indices);
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free