We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecafb3d commit 7a37427Copy full SHA for 7a37427
setup.py
@@ -151,6 +151,10 @@ def run(self):
151
class DPCPPBuild(build_ext, object):
152
def run(self):
153
print("run")
154
+
155
+ # Generate the code before globbing!
156
+ generate_ipex_cpu_aten_code(base_dir)
157
158
cmake = find_executable('cmake3') or find_executable('cmake')
159
if cmake is None:
160
raise RuntimeError(
@@ -220,8 +224,6 @@ def build_extension(self, ext):
220
224
# Generate version info (torch_xla.__version__)
221
225
create_version_files(base_dir, version, ipex_git_sha, torch_git_sha)
222
226
223
-# Generate the code before globbing!
-generate_ipex_cpu_aten_code(base_dir)
227
228
# Constant known variables used throughout this file
229
0 commit comments