blob: f2c009f69782e261a7b43bb8f4032d317aca5fb3 [file] [log] [blame]
#include "caffe2/operators/ngram_ops.h"
#include "caffe2/core/operator.h"
#include "caffe2/core/tensor.h"
namespace caffe2 {
REGISTER_CPU_OPERATOR(
NGramFromCategorical,
NGramFromCategoricalOp<float, int64_t, CPUContext>);
NO_GRADIENT(NGramFromCategorical);
OPERATOR_SCHEMA(NGramFromCategorical).NumInputs(1).NumOutputs(1);
} // namespace caffe2