Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old sim Makefile #1511

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion aie_runtime_lib/AIE/aiesim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


set(INSTALLS
Makefile
genwrapper_for_ps.cpp)


Expand Down
55 changes: 0 additions & 55 deletions aie_runtime_lib/AIE/aiesim/Makefile

This file was deleted.

1 change: 0 additions & 1 deletion aie_runtime_lib/AIE2/aiesim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


set(INSTALLS
Makefile
genwrapper_for_ps.cpp)


Expand Down
55 changes: 0 additions & 55 deletions aie_runtime_lib/AIE2/aiesim/Makefile

This file was deleted.

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
Loading