histogram_sig.cc 331 字节
Newer Older
P
phlrain 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


#include "paddle/pten/core/compat/op_utils.h"

namespace pten {

KernelSignature HistogramOpArgumentMapping(const ArgumentMappingContext& ctx) {
  return KernelSignature(
      "histogram", {"X"}, {"bins", "min", "max"}, {"Out"});
}


}  // namespace pten

PT_REGISTER_ARG_MAPPING_FN(histogram, pten::HistogramOpArgumentMapping);