From 5a34ccf3d43abae34ee9d94be178c4cce7385f90 Mon Sep 17 00:00:00 2001 From: Alex Black Date: Fri, 20 Mar 2020 23:50:17 +1100 Subject: [PATCH] Remove printf in ones_as c++ op (#336) Signed-off-by: Alex Black --- libnd4j/include/ops/declarable/generic/parity_ops/ones_as.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnd4j/include/ops/declarable/generic/parity_ops/ones_as.cpp b/libnd4j/include/ops/declarable/generic/parity_ops/ones_as.cpp index dccebf8c9..32ce54300 100644 --- a/libnd4j/include/ops/declarable/generic/parity_ops/ones_as.cpp +++ b/libnd4j/include/ops/declarable/generic/parity_ops/ones_as.cpp @@ -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); }