We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91adbe6 + 8d4261b commit d941446Copy full SHA for d941446
verifier/agent.py
@@ -17,7 +17,9 @@ def _log(self, msg):
17
18
def _run(self, *cmd):
19
self._log('Running command: {0}'.format(str(cmd)))
20
- subprocess.check_call(cmd)
+ env = dict(os.environ)
21
+ env['CUPY_DEBUG_LIBRARY_LOAD'] = '1'
22
+ subprocess.check_call(cmd, env=env)
23
24
def parse_args(self):
25
parser = argparse.ArgumentParser()
@@ -79,7 +81,6 @@ def main(self):
79
81
'import cupy',
80
82
'import cupy.cuda.cudnn',
83
'cupy.show_config()',
- 'print(cupy._environment._get_preload_logs())'
84
])
85
]
86
self._run(*cmdline)
0 commit comments