Remove printf in ones_as c++ op (#336)

Signed-off-by: Alex Black <blacka101@gmail.com>
master
Alex Black 2020-03-20 23:50:17 +11:00 committed by GitHub
parent f79207033b
commit 5a34ccf3d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ namespace sd {
auto dtype = block.numD() ? D_ARG(0) : ArrayOptions::dataType(in);
auto shape = sd::ConstantShapeHelper::getInstance()->createShapeInfo(dtype, in);
nd4j_printf("numD: %i; dtype: %s\n", block.numD(), DataTypeUtils::asString(dtype).c_str());
//nd4j_printf("numD: %i; dtype: %s\n", block.numD(), DataTypeUtils::asString(dtype).c_str());
return SHAPELIST(shape);
}