Skip to content

Commit

Permalink
[circle-mpqsolver] Improve message (Samsung#11904)
Browse files Browse the repository at this point in the history
This improves message for solver slection.

ONE-DCO-1.0-Signed-off-by: Hyukjin Jeong <[email protected]>
  • Loading branch information
jinevening authored Nov 10, 2023
1 parent 6ef6371 commit ee6e037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/circle-mpqsolver/src/CircleMPQSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ int entry(int argc, char **argv)
if (arser[bisection_str])
{
// optimize
SolverOutput::get() << "using bisection\n";
SolverOutput::get() << "Automatic mixed quantization using bisection\n";

using namespace mpqsolver::bisection;
auto bi_solver =
Expand Down Expand Up @@ -247,7 +247,7 @@ int entry(int argc, char **argv)
}
else if (arser[patterns_str])
{
SolverOutput::get() << "using patterns\n";
SolverOutput::get() << "Automatic mixed quantization using patterns\n";

std::vector<mpqsolver::pattern::QuantizationPattern> patterns;
if (arser[layernorm_str])
Expand Down

0 comments on commit ee6e037

Please sign in to comment.