Skip to content

Commit

Permalink
Remove old sim Makefile
Browse files Browse the repository at this point in the history
This is no longer used.  aiecc.py can generate the simulation.
  • Loading branch information
stephenneuendorffer committed May 23, 2024
1 parent bd0a0f8 commit a3d61cf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python/compiler/aiecc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,6 @@ def make_sim_dir(x):
"test_lib",
"include",
)
sim_makefile = os.path.join(runtime_simlib_path, "Makefile")
sim_genwrapper = os.path.join(runtime_simlib_path, "genwrapper_for_ps.cpp")
file_physical = self.prepend_tmp("input_physical.mlir")
memory_allocator = os.path.join(
Expand Down Expand Up @@ -893,8 +892,6 @@ def make_sim_dir(x):
],
)
)
processes.append(self.do_call(task, ["cp", sim_makefile, sim_dir]))
processes.append(self.do_call(task, ["cp", sim_genwrapper, sim_ps_dir]))
processes.append(
self.do_call(
task,
Expand All @@ -905,7 +902,7 @@ def make_sim_dir(x):
"-shared",
"-o",
os.path.join(sim_ps_dir, "ps.so"),
os.path.join(runtime_simlib_path, "genwrapper_for_ps.cpp"),
sim_genwrapper,
*aie_target_defines(aie_target),
*host_opts,
*sim_cc_args,
Expand Down

0 comments on commit a3d61cf

Please sign in to comment.