PaddlePaddle / Paddle2ONNX

ONNX Model Exporter for PaddlePaddle
Apache License 2.0
670 stars 157 forks source link

[Bug][CI] Fix the bug where elementwise floordiv only performs div without floor #1188

Closed Zheng-Bicheng closed 4 months ago

Zheng-Bicheng commented 4 months ago

elementwise_floordiv 算子在int32/int64的情况下直接转换成了ONNX中的div算子,由于div算子是普通除操作,而不是整除操作,因此无法通过CI的校验。