File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 48
48
Path (_mlir_libs .__file__ ).parent
49
49
/ f"{ shlib_prefix ()} mlir_async_runtime.{ shlib_ext ()} "
50
50
)
51
- if not ASYNC_RUNTIME_LIB_PATH .exists ():
52
- warnings .warn (f"{ ASYNC_RUNTIME_LIB_PATH = } doesn't exist" )
53
51
54
52
if C_RUNNER_UTILS_LIB_PATH := os .getenv ("C_RUNNER_UTILS_LIB_PATH" ):
55
53
C_RUNNER_UTILS_LIB_PATH = Path (C_RUNNER_UTILS_LIB_PATH )
59
57
/ f"{ shlib_prefix ()} mlir_c_runner_utils.{ shlib_ext ()} "
60
58
)
61
59
62
- if not C_RUNNER_UTILS_LIB_PATH .exists ():
63
- warnings .warn (f"{ C_RUNNER_UTILS_LIB_PATH = } doesn't exist" )
64
-
65
60
if RUNNER_UTILS_LIB_PATH := os .getenv ("RUNNER_UTILS_LIB_PATH" ):
66
61
RUNNER_UTILS_LIB_PATH = Path (RUNNER_UTILS_LIB_PATH )
67
62
else :
68
63
RUNNER_UTILS_LIB_PATH = (
69
64
Path (_mlir_libs .__file__ ).parent
70
65
/ f"{ shlib_prefix ()} mlir_runner_utils.{ shlib_ext ()} "
71
66
)
72
- if not RUNNER_UTILS_LIB_PATH .exists ():
73
- warnings .warn (f"{ RUNNER_UTILS_LIB_PATH = } doesn't exist" )
74
67
75
68
76
69
def get_ctype_func (mlir_ret_types ):
You can’t perform that action at this time.
0 commit comments