parent
5d9b2a16e5
commit
495256c827
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
namespace nd4j {
|
namespace nd4j {
|
||||||
namespace ops {
|
namespace ops {
|
||||||
REDUCTION_OP_IMPL(hashcode, 1, 1, false, 0, 0) {
|
CUSTOM_OP_IMPL(hashcode, 1, 1, false, 0, 0) {
|
||||||
REQUIRE_TRUE(block.width() == 1, 0, "hashcode: this op can't be applied along dimension");
|
REQUIRE_TRUE(block.width() == 1, 0, "hashcode: this op can't be applied along dimension");
|
||||||
|
|
||||||
auto input = INPUT_VARIABLE(0);
|
auto input = INPUT_VARIABLE(0);
|
||||||
|
@ -40,6 +40,10 @@ namespace nd4j {
|
||||||
return Status::OK();
|
return Status::OK();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
DECLARE_SHAPE_FN(hashcode) {
|
||||||
|
return SHAPELIST(ConstantShapeHelper::getInstance()->scalarShapeInfo(nd4j::DataType::INT64));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
DECLARE_TYPES(hashcode) {
|
DECLARE_TYPES(hashcode) {
|
||||||
getOpDescriptor()
|
getOpDescriptor()
|
||||||
|
|
|
@ -213,7 +213,7 @@ namespace nd4j {
|
||||||
* This operation calculates hash code, optionally along dimension
|
* This operation calculates hash code, optionally along dimension
|
||||||
*/
|
*/
|
||||||
#if NOT_EXCLUDED(OP_hashcode)
|
#if NOT_EXCLUDED(OP_hashcode)
|
||||||
DECLARE_REDUCTION_OP(hashcode, 1, 1, false, 0, 0);
|
DECLARE_CUSTOM_OP(hashcode, 1, 1, false, 0, 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue