pytorch/caffe2/operators/batch_sparse_to_dense_op.cc
Nikita Shulga a9b0a921d5 Disable avoid-non-const-global-variables lint check (#62008)
Summary:
As GoogleTest `TEST` macro is non-compliant with it as well as `DEFINE_DISPATCH`

All changes but the ones to `.clang-tidy` are generated using following script:
```
for i in `find . -type f -iname "*.c*" -or -iname "*.h"|xargs grep cppcoreguidelines-avoid-non-const-global-variables|cut -f1 -d:|sort|uniq`;  do sed -i "/\/\/ NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)/d" $i; done
```

Pull Request resolved: https://github.com/pytorch/pytorch/pull/62008

Reviewed By: driazati, r-barnes

Differential Revision: D29838584

Pulled By: malfet

fbshipit-source-id: 1b2f8602c945bd4ce50a9bfdd204755556e31d13
2021-07-22 18:04:40 -07:00

232 lines
7.2 KiB
C++

#include "caffe2/operators/batch_sparse_to_dense_op.h"
namespace caffe2 {
template <>
template <typename TLen, typename TInd>
void BatchSparseToDenseOp<float, CPUContext>::FillInDenseValues(
const int64_t batch_size,
const int64_t indice_lengths,
const TLen* lengths_data,
const TInd* indices_data,
const float* values_data,
float* output_data,
CPUContext* /*context*/) {
TLen lengths_sum = 0;
math::Sum<TLen, CPUContext>(
batch_size, lengths_data, &lengths_sum, &context_);
CAFFE_ENFORCE_EQ(lengths_sum, indice_lengths);
int64_t k = 0;
for (int64_t i = 0; i < batch_size; ++i) {
for (int64_t j = 0; j < lengths_data[i]; ++j) {
CAFFE_ENFORCE(
indices_data[k] < dense_last_dim_,
"An indice (",
indices_data[k],
") is larger then last dim of dense (",
dense_last_dim_,
").");
output_data[i * dense_last_dim_ + indices_data[k]] = values_data[k];
k += 1;
}
}
}
template <>
template <typename TLen, typename TInd>
void BatchDenseToSparseOp<float, CPUContext>::FillInSparseValues(
const int64_t batch_size,
const int64_t indice_lengths,
const TLen* lengths_data,
const TInd* indices_data,
const float* dense_data,
float* output_data,
CPUContext* /*context*/) {
TLen lengths_sum = 0;
math::Sum<TLen, CPUContext>(
batch_size, lengths_data, &lengths_sum, &context_);
CAFFE_ENFORCE_EQ(lengths_sum, indice_lengths);
int64_t k = 0;
for (int64_t i = 0; i < batch_size; ++i) {
for (int64_t j = 0; j < lengths_data[i]; ++j) {
CAFFE_ENFORCE(
indices_data[k] < dense_last_dim_,
"An indice (",
indices_data[k],
") is larger then last dim of dense (",
dense_last_dim_,
").");
output_data[k] = dense_data[i * dense_last_dim_ + indices_data[k]];
k += 1;
}
}
}
REGISTER_CPU_OPERATOR(
BatchSparseToDense,
BatchSparseToDenseOp<float, CPUContext>);
OPERATOR_SCHEMA(BatchSparseToDense)
.NumInputs(3, 4)
.NumOutputs(1)
.DisallowInputFillers() // TODO: enable the filler
.SetDoc(R"DOC(
Convert sparse matrix representation into dense matrix.
A sparse matrix is represented by `lengths` vector, `indices` vector,
and `values` vector. Each element in `lengths` vector (lengths[`i`]) represents
the number of indices in this batch (batch `i`).
With in each batch, `indices` should not have duplicate number.
For example, with input:
lengths = [2, 3, 1]
indices = [0, 1, 2, 3, 4, 5]
values = [6, 7, 8, 9, 10, 11]
dense_dim = 6
default_value = 0
The output is:
output = [[6, 7, 0, 0, 0, 0],
[0, 0, 8, 9, 10, 0],
[0, 0, 0, 0, 0, 11]]
after running this operator.
)DOC")
.Input(
0,
"lengths",
"Flatten tensor, used to break down indices and values into per batch indices and values.")
.Input(
1,
"indices",
"Flatten tensor of total size = \\sum lengths, containing the indices ")
.Input(2, "values", "Data tensor, dimension has to match `indices`")
.Input(
3,
"output_shape_inference",
"Optional, a dense tensor whose shape define the output shape")
.Output(
0,
"dense",
"2-D dense tensor, with 1st dim = len(lengths), 2nd dim = dense_last_dim"
"in the arg list, the tensor is of the same data type as `values`."
"Missing values are filled with default_value")
.TensorInferenceFunction([](const OperatorDef& def,
const vector<TensorShape>& in) {
ArgumentHelper helper(def);
vector<long> output_dims;
if (in.size() == 4) {
const auto& inference_dims = GetDimsVector(in[3]);
output_dims.insert(output_dims.end(), inference_dims.begin(), inference_dims.end());
const int dense_last_dim = helper.GetSingleArgument<int>("dense_last_dim", 0);
if(dense_last_dim > 0) {
CAFFE_ENFORCE(
output_dims.back() == dense_last_dim,
"The last dim of output_shape_inference should be consistent with dense_last_dim");
}
} else {
const int dense_last_dim = helper.GetSingleArgument<int>("dense_last_dim", 0);
CAFFE_ENFORCE(
dense_last_dim > 0,
"dense_last_dim must be set when output shape inference is unavailable");
const auto& lens_dims = GetDimsVector(in[0]);
output_dims.insert(output_dims.end(), lens_dims[0]);
output_dims.insert(output_dims.end(), dense_last_dim);
}
vector<TensorShape> out(1);
out[0] = CreateTensorShape(output_dims, in[2].data_type());
return out;
})
.Arg(
"dense_last_dim",
"Optional, output dense last dimension. "
"If both this argument and output_shape_inference are set, "
"it should be consistent with output_shape_inference's last dim")
.Arg(
"default_value",
"Optional, missing values are filled with this value."
"default_value = 0 when not set");
REGISTER_CPU_OPERATOR(
BatchDenseToSparse,
BatchDenseToSparseOp<float, CPUContext>);
OPERATOR_SCHEMA(BatchDenseToSparse)
.NumInputs(3)
.NumOutputs(1)
.SetDoc(R"DOC(
This Op is a inverse of BatchSparseToDenseOp.
Basically, given a `lengths` vector, a `indices` vector,
and a dense matrix `dense`, output `value` vector so that, along with
`lengths` vector and `indices` vector, forms a sparse representation
of the dense matrix.
A sparse matrix is represented by `lengths` vector, `indices` vector,
and `values` vector. Each element in `lengths` vector (lengths[`i`]) represents
the number of indices in this batch (batch `i`).
With in each batch, `indices` should not have duplicate number.
For example, with input:
lengths = [2, 3, 1]
indices = [0, 1, 2, 3, 4, 5]
output = [[6, 7, 0, 0, 0, 0],
[0, 0, 8, 9, 10, 0],
[0, 0, 0, 0, 0, 11]]
The output is:
values = [6, 7, 8, 9, 10, 11]
after running this operator.
)DOC")
.Input(
0,
"lengths",
"Flatten lengths, Used to break down indices into per batch indices")
.Input(
1,
"indices",
"Flatten indices, tensor of total size = \\sum lengths, containing the indices ")
.Input(
2,
"dense",
"dense 2-D tensor, first dim = len(lengths), last dim > Any(indices)")
.Output(
0,
"values",
"Values, tensor of the same size as `indices` and same data type as dense tensor.");
namespace {
class GetBatchSparseToDenseGradient : public GradientMakerBase {
using GradientMakerBase::GradientMakerBase;
vector<OperatorDef> GetGradientDefs() override {
return SingleGradientDef(
"BatchDenseToSparse",
"",
vector<string>{I(0), I(1), GO(0)},
vector<string>{GI(2)});
}
};
class GetBatchDenseToSparseGradient : public GradientMakerBase {
using GradientMakerBase::GradientMakerBase;
vector<OperatorDef> GetGradientDefs() override {
return SingleGradientDef(
"BatchSparseToDense",
"",
vector<string>{I(0), I(1), GO(0), I(2)},
vector<string>{GI(2)});
}
};
REGISTER_GRADIENT(BatchSparseToDense, GetBatchSparseToDenseGradient);
REGISTER_GRADIENT(BatchDenseToSparse, GetBatchDenseToSparseGradient);
} // namespace
} // namespace caffe2