From 12b48dcfb072f4a9ead87c75d3b79f15d91f8833 Mon Sep 17 00:00:00 2001 From: Gregor Kikelj <96022003+GregorKikelj@users.noreply.github.com> Date: Mon, 7 Feb 2022 23:12:54 +0100 Subject: [PATCH] remove unused int_rnd function (#23717) * testing * revert Co-authored-by: Adeeb Shihadeh --- common/numpy_fast.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/numpy_fast.py b/common/numpy_fast.py index a8361214d..878c0005c 100644 --- a/common/numpy_fast.py +++ b/common/numpy_fast.py @@ -1,6 +1,3 @@ -def int_rnd(x): - return int(round(x)) - def clip(x, lo, hi): return max(lo, min(hi, x))