From d3029c91c51bf4dc43a9822cc1c443333acfa7f6 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Fri, 24 Feb 2023 00:23:20 -0800 Subject: [PATCH] no rng for op test --- openpilot/compile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openpilot/compile.py b/openpilot/compile.py index 4441437f21..91a235a0c6 100644 --- a/openpilot/compile.py +++ b/openpilot/compile.py @@ -43,6 +43,7 @@ def model_exec(run_onnx, using_graph, **inputs): return ret.realize() def compile(dat, output_fn): + Tensor.manual_seed(1337) Tensor.no_grad = True using_graph = graph.GRAPH graph.GRAPH = False