"vllm_omni/diffusion/attention/parallel/ring.py" did not exist on "356077823ea8569ff15218e51228c1b3d50792a9"
  1. 08 Nov, 2023 1 commit
    • 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