From e71846b029bb2c32248936fc74fdc7c323863b25 Mon Sep 17 00:00:00 2001 From: Suffian Khan Date: Fri, 2 Jul 2021 17:15:28 -0700 Subject: [PATCH] fix ld_preload for rocm (#8290) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 18f5fac3e0..4e32f487ee 100644 --- a/setup.py +++ b/setup.py @@ -162,7 +162,8 @@ try: args.append(dest) if len(args) > 3: subprocess.run(args, check=True, stdout=subprocess.PIPE) - self._rewrite_ld_preload(to_preload) + + self._rewrite_ld_preload(to_preload) _bdist_wheel.run(self) if is_manylinux: file = glob(path.join(self.dist_dir, '*linux*.whl'))[0]