From 34c529b3c3b608cee7a125b80d8a2be04ebd4add Mon Sep 17 00:00:00 2001 From: Megvii Engine Team Date: Wed, 12 Oct 2022 12:29:00 +0800 Subject: [PATCH] fix(subgraph): disable jit due to environment issue GitOrigin-RevId: 5dfa30c01f46d74d9228667eb2686302ea102f26 --- imperative/python/megengine/core/tensor/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imperative/python/megengine/core/tensor/utils.py b/imperative/python/megengine/core/tensor/utils.py index ccf48eb0..216762e4 100644 --- a/imperative/python/megengine/core/tensor/utils.py +++ b/imperative/python/megengine/core/tensor/utils.py @@ -29,6 +29,8 @@ from ..ops import builtin from .amp import _get_amp_high_prec_dtype, _get_amp_low_prec_dtype from .dtype import is_dtype_equal, is_quantize +jit_supported = False + def get_convert_inputs(): r"""get the curerent state of `_enable_convert_inputs`"""