"vscode:/vscode.git/clone" did not exist on "2c493fb3fd37e5ecac068607b408ed5724d80fcc"
  • Zakor Gyula's avatar
    Fix Round operator inaccuracy (#2244) · 48c4453c
    Zakor Gyula authored
    The inaccuracy was caused by ONNX round requires nearest integer rounding for halway (0.5) cases.
    std::round rounds away from zero, thus giving wrong results with halfway cases.
    Replaced std::round with std::nearbyint which uses the correct rounding by default.
    48c4453c
rewrite_quantization.cpp 4.39 KB