1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
#include "lengths_reducer_ops.h"
#include "caffe2/operators/segment_reduction_op.h"
namespace caffe2 {
// Use _STR option because the schema is declared using _STR version too in
// generic fashion. Otherwise it'd break schema declaration check.
// TODO(dzhulgakov): remove _STR when all lengths ops are off generic version.
using SparseLengthsSumOp =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 0, 0>;
using SparseLengthsWeightedSumOp =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 1, 0>;
using SparseLengthsMeanOp =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 0, 1>;
using SparseLengthsSumAccFP16Op =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 0, 0, 0, 1>;
using SparseLengthsWeightedSumAccFP16Op =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 1, 0, 0, 1>;
using SparseLengthsMeanAccFP16Op =
SparseLengthsReductionFakeFp16Op<TensorTypes<float, at::Half>, 0, 1, 0, 1>;
using SparseLengthsSumFakeFP16EmbeddingOnlyOp =
SparseLengthsReductionFakeFp16Op<
TensorTypes<float, at::Half>,
0,
0,
0,
0,
1>;
using SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp =
SparseLengthsReductionFakeFp16Op<
TensorTypes<float, at::Half>,
1,
0,
0,
0,
1>;
using SparseLengthsMeanFakeFP16EmbeddingOnlyOp =
SparseLengthsReductionFakeFp16Op<
TensorTypes<float, at::Half>,
0,
1,
0,
0,
1>;
REGISTER_CPU_OPERATOR(SparseLengthsSumFakeFP16, SparseLengthsSumOp);
REGISTER_CPU_OPERATOR(
SparseLengthsWeightedSumFakeFP16,
SparseLengthsWeightedSumOp);
REGISTER_CPU_OPERATOR(SparseLengthsMeanFakeFP16, SparseLengthsMeanOp);
REGISTER_CPU_OPERATOR(
SparseLengthsSumFakeFP16AccFP16,
SparseLengthsSumAccFP16Op);
REGISTER_CPU_OPERATOR(
SparseLengthsWeightedSumFakeFP16AccFP16,
SparseLengthsWeightedSumAccFP16Op);
REGISTER_CPU_OPERATOR(
SparseLengthsMeanFakeFP16AccFP16,
SparseLengthsMeanAccFP16Op);
REGISTER_CPU_OPERATOR(
SparseLengthsSumFakeFP16EmbeddingOnly,
SparseLengthsSumFakeFP16EmbeddingOnlyOp);
REGISTER_CPU_OPERATOR(
SparseLengthsWeightedSumFakeFP16EmbeddingOnly,
SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp);
REGISTER_CPU_OPERATOR(
SparseLengthsMeanFakeFP16EmbeddingOnly,
SparseLengthsMeanFakeFP16EmbeddingOnlyOp);
template <typename Def>
string FormatDoc() {
string doc = Def::doc;
c10::ReplaceAll(doc, "{op}", Def::OpDef::name);
c10::ReplaceAll(doc, "{op_doc}", Def::OpDef::doc);
auto replaced = c10::ReplaceAll(doc, "{extra}", "");
CAFFE_ENFORCE_EQ(replaced, 0);
return doc;
}
using SparseLengthsSumDef = AbstractSparseLengthsDef<
float,
int,
CPUContext,
SumReducerDef,
true /*GradientNeedIndices*/>;
OPERATOR_SCHEMA(SparseLengthsSumFakeFP16)
.NumInputs(SparseLengthsSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsSumOp::DATA,
SparseLengthsSumOp::INDICES,
SparseLengthsSumOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsSumFakeFP16);
using SparseLengthsWeightedSumDef = AbstractSparseLengthsDef<
float,
int,
CPUContext,
WeightedSumReducerDef,
true /*GradientNeedIndices*/>;
OPERATOR_SCHEMA(SparseLengthsWeightedSumFakeFP16)
.NumInputs(SparseLengthsWeightedSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.WeightedValueKeyLengthInputFillers(
SparseLengthsWeightedSumOp::DATA,
SparseLengthsWeightedSumOp::INDICES,
SparseLengthsWeightedSumOp::LENGTHS,
SparseLengthsWeightedSumOp::WEIGHT)
.SetDoc(FormatDoc<SparseLengthsWeightedSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsWeightedSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsWeightedSumFakeFP16);
using SparseLengthsMeanDef = AbstractSparseLengthsDef<
float,
int,
CPUContext,
MeanReducerDef,
true /*GradientNeedIndices*/>;
OPERATOR_SCHEMA(SparseLengthsMeanFakeFP16)
.NumInputs(SparseLengthsMeanDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsMeanOp::DATA,
SparseLengthsMeanOp::INDICES,
SparseLengthsMeanOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsMeanDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsMeanDef::PopulateSchema);
NO_GRADIENT(SparseLengthsMeanFakeFP16);
OPERATOR_SCHEMA(SparseLengthsSumFakeFP16AccFP16)
.NumInputs(SparseLengthsSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsSumOp::DATA,
SparseLengthsSumOp::INDICES,
SparseLengthsSumOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsSumFakeFP16AccFP16);
OPERATOR_SCHEMA(SparseLengthsWeightedSumFakeFP16AccFP16)
.NumInputs(SparseLengthsWeightedSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.WeightedValueKeyLengthInputFillers(
SparseLengthsWeightedSumOp::DATA,
SparseLengthsWeightedSumOp::INDICES,
SparseLengthsWeightedSumOp::LENGTHS,
SparseLengthsWeightedSumOp::WEIGHT)
.SetDoc(FormatDoc<SparseLengthsWeightedSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsWeightedSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsWeightedSumFakeFP16AccFP16);
OPERATOR_SCHEMA(SparseLengthsMeanFakeFP16AccFP16)
.NumInputs(SparseLengthsMeanDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsMeanOp::DATA,
SparseLengthsMeanOp::INDICES,
SparseLengthsMeanOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsMeanDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsMeanDef::PopulateSchema);
NO_GRADIENT(SparseLengthsMeanFakeFP16AccFP16);
OPERATOR_SCHEMA(SparseLengthsSumFakeFP16EmbeddingOnly)
.NumInputs(SparseLengthsSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsSumFakeFP16EmbeddingOnlyOp::DATA,
SparseLengthsSumFakeFP16EmbeddingOnlyOp::INDICES,
SparseLengthsSumFakeFP16EmbeddingOnlyOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsSumFakeFP16EmbeddingOnly);
OPERATOR_SCHEMA(SparseLengthsWeightedSumFakeFP16EmbeddingOnly)
.NumInputs(SparseLengthsWeightedSumDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.WeightedValueKeyLengthInputFillers(
SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp::DATA,
SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp::INDICES,
SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp::LENGTHS,
SparseLengthsWeightedSumFakeFP16EmbeddingOnlyOp::WEIGHT)
.SetDoc(FormatDoc<SparseLengthsWeightedSumDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsWeightedSumDef::PopulateSchema)
.InheritOnnxSchema();
NO_GRADIENT(SparseLengthsWeightedSumFakeFP16EmbeddingOnly);
OPERATOR_SCHEMA(SparseLengthsMeanFakeFP16EmbeddingOnly)
.NumInputs(SparseLengthsMeanDef::ForwardOp::kNumInputs)
.NumOutputs(1)
.ValueKeyLengthInputFillers(
SparseLengthsMeanFakeFP16EmbeddingOnlyOp::DATA,
SparseLengthsMeanFakeFP16EmbeddingOnlyOp::INDICES,
SparseLengthsMeanFakeFP16EmbeddingOnlyOp::LENGTHS)
.SetDoc(FormatDoc<SparseLengthsMeanDef>())
.Output(0, "OUTPUT", "Aggregated tensor")
.FillUsing(SparseLengthsMeanDef::PopulateSchema);
NO_GRADIENT(SparseLengthsMeanFakeFP16EmbeddingOnly);
} // namespace caffe2
|