Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add verbose message
Browse files Browse the repository at this point in the history
  • Loading branch information
Li, Hao H committed Dec 3, 2018
1 parent 72b81d9 commit 1f98f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/operator/quantization/quantized_fully_connected.cc
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct QuantizedSumInitKernelWithBias {
out[i] = bias[i] * float_for_one_bias_quant /
float_for_one_out_quant;
} else {
LOG(INFO) << "WARNING: QuantizedBiasAddKernel float_for_one_out_quant is 0 !";
LOG(INFO) << "WARNING: float_for_one_out_quant is 0, need to check min/max data !";
out[i] = 0;
}
}
Expand Down Expand Up @@ -220,7 +220,7 @@ void QuantizedFullyConnectedForward(const nnvm::NodeAttrs& attrs,
n,
&oc);
#else
LOG(FATAL) << "s8u8s32 is only supported by MKL BLAS library";
LOG(FATAL) << "Quantized INT8 cblas_gemm_s8u8s32 is only supported by MKL BLAS library";
#endif
}

Expand Down

0 comments on commit 1f98f63

Please sign in to comment.