-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f89512
commit 4fe0c68
Showing
1,041 changed files
with
3,119,821 additions
and
4,149 deletions.
There are no files selected for viewing
File renamed without changes.
773 changes: 773 additions & 0 deletions
773
programming_examples/basic/matrix_multiplication/my_sweep.csv
Large diffs are not rendered by default.
Oops, something went wrong.
1,599 changes: 1,599 additions & 0 deletions
1,599
programming_examples/basic/matrix_multiplication/my_sweep.log
Large diffs are not rendered by default.
Oops, something went wrong.
412 changes: 412 additions & 0 deletions
412
programming_examples/basic/matrix_multiplication/whole_array/_build/CMakeCache.txt
Large diffs are not rendered by default.
Oops, something went wrong.
208 changes: 208 additions & 0 deletions
208
programming_examples/basic/matrix_multiplication/whole_array/_build/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
# CMAKE generated file: DO NOT EDIT! | ||
# Generated by "Unix Makefiles" Generator, CMake Version 3.27 | ||
|
||
# Default target executed when no arguments are given to make. | ||
default_target: all | ||
.PHONY : default_target | ||
|
||
# Allow only one "make -f Makefile2" at a time, but pass parallelism. | ||
.NOTPARALLEL: | ||
|
||
#============================================================================= | ||
# Special targets provided by cmake. | ||
|
||
# Disable implicit rules so canonical targets will work. | ||
.SUFFIXES: | ||
|
||
# Disable VCS-based implicit rules. | ||
% : %,v | ||
|
||
# Disable VCS-based implicit rules. | ||
% : RCS/% | ||
|
||
# Disable VCS-based implicit rules. | ||
% : RCS/%,v | ||
|
||
# Disable VCS-based implicit rules. | ||
% : SCCS/s.% | ||
|
||
# Disable VCS-based implicit rules. | ||
% : s.% | ||
|
||
.SUFFIXES: .hpux_make_needs_suffix_list | ||
|
||
# Command-line flag to silence nested $(MAKE). | ||
$(VERBOSE)MAKESILENT = -s | ||
|
||
#Suppress display of executed commands. | ||
$(VERBOSE).SILENT: | ||
|
||
# A target that is always out of date. | ||
cmake_force: | ||
.PHONY : cmake_force | ||
|
||
#============================================================================= | ||
# Set environment variables for the build. | ||
|
||
# The shell in which to execute make rules. | ||
SHELL = /bin/sh | ||
|
||
# The CMake executable. | ||
CMAKE_COMMAND = /scratch/aba/micro/mlir-aie/sandbox/lib/python3.10/site-packages/cmake/data/bin/cmake | ||
|
||
# The command to remove a file. | ||
RM = /scratch/aba/micro/mlir-aie/sandbox/lib/python3.10/site-packages/cmake/data/bin/cmake -E rm -f | ||
|
||
# Escaping for special characters. | ||
EQUALS = = | ||
|
||
# The top-level source directory on which CMake was run. | ||
CMAKE_SOURCE_DIR = /scratch/aba/micro/mlir-aie/programming_examples/basic/matrix_multiplication | ||
|
||
# The top-level build directory on which CMake was run. | ||
CMAKE_BINARY_DIR = /scratch/aba/micro/mlir-aie/programming_examples/basic/matrix_multiplication/whole_array/_build | ||
|
||
#============================================================================= | ||
# Targets provided globally by CMake. | ||
|
||
# Special rule for the target edit_cache | ||
edit_cache: | ||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." | ||
/scratch/aba/micro/mlir-aie/sandbox/lib/python3.10/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. | ||
.PHONY : edit_cache | ||
|
||
# Special rule for the target edit_cache | ||
edit_cache/fast: edit_cache | ||
.PHONY : edit_cache/fast | ||
|
||
# Special rule for the target rebuild_cache | ||
rebuild_cache: | ||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." | ||
/scratch/aba/micro/mlir-aie/sandbox/lib/python3.10/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) | ||
.PHONY : rebuild_cache | ||
|
||
# Special rule for the target rebuild_cache | ||
rebuild_cache/fast: rebuild_cache | ||
.PHONY : rebuild_cache/fast | ||
|
||
# The main all target | ||
all: cmake_check_build_system | ||
$(CMAKE_COMMAND) -E cmake_progress_start /scratch/aba/micro/mlir-aie/programming_examples/basic/matrix_multiplication/whole_array/_build/CMakeFiles /scratch/aba/micro/mlir-aie/programming_examples/basic/matrix_multiplication/whole_array/_build//CMakeFiles/progress.marks | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all | ||
$(CMAKE_COMMAND) -E cmake_progress_start /scratch/aba/micro/mlir-aie/programming_examples/basic/matrix_multiplication/whole_array/_build/CMakeFiles 0 | ||
.PHONY : all | ||
|
||
# The main clean target | ||
clean: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean | ||
.PHONY : clean | ||
|
||
# The main clean target | ||
clean/fast: clean | ||
.PHONY : clean/fast | ||
|
||
# Prepare targets for installation. | ||
preinstall: all | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall | ||
.PHONY : preinstall | ||
|
||
# Prepare targets for installation. | ||
preinstall/fast: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall | ||
.PHONY : preinstall/fast | ||
|
||
# clear depends | ||
depend: | ||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 | ||
.PHONY : depend | ||
|
||
#============================================================================= | ||
# Target rules for targets named matrixMultiplication | ||
|
||
# Build rule for target. | ||
matrixMultiplication: cmake_check_build_system | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 matrixMultiplication | ||
.PHONY : matrixMultiplication | ||
|
||
# fast build rule for target. | ||
matrixMultiplication/fast: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/build | ||
.PHONY : matrixMultiplication/fast | ||
|
||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.o: scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.o | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.o | ||
|
||
# target to build an object file | ||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.o: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.o | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.o | ||
|
||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.i: scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.i | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.i | ||
|
||
# target to preprocess a source file | ||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.i: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.i | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.i | ||
|
||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.s: scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.s | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.s | ||
|
||
# target to generate assembly for a file | ||
scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.s: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.s | ||
.PHONY : scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.cpp.s | ||
|
||
whole_array/test.o: whole_array/test.cpp.o | ||
.PHONY : whole_array/test.o | ||
|
||
# target to build an object file | ||
whole_array/test.cpp.o: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/whole_array/test.cpp.o | ||
.PHONY : whole_array/test.cpp.o | ||
|
||
whole_array/test.i: whole_array/test.cpp.i | ||
.PHONY : whole_array/test.i | ||
|
||
# target to preprocess a source file | ||
whole_array/test.cpp.i: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/whole_array/test.cpp.i | ||
.PHONY : whole_array/test.cpp.i | ||
|
||
whole_array/test.s: whole_array/test.cpp.s | ||
.PHONY : whole_array/test.s | ||
|
||
# target to generate assembly for a file | ||
whole_array/test.cpp.s: | ||
$(MAKE) $(MAKESILENT) -f CMakeFiles/matrixMultiplication.dir/build.make CMakeFiles/matrixMultiplication.dir/whole_array/test.cpp.s | ||
.PHONY : whole_array/test.cpp.s | ||
|
||
# Help Target | ||
help: | ||
@echo "The following are some of the valid targets for this Makefile:" | ||
@echo "... all (the default if no target is provided)" | ||
@echo "... clean" | ||
@echo "... depend" | ||
@echo "... edit_cache" | ||
@echo "... rebuild_cache" | ||
@echo "... matrixMultiplication" | ||
@echo "... scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.o" | ||
@echo "... scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.i" | ||
@echo "... scratch/aba/micro/mlir-aie/runtime_lib/test_lib/test_utils.s" | ||
@echo "... whole_array/test.o" | ||
@echo "... whole_array/test.i" | ||
@echo "... whole_array/test.s" | ||
.PHONY : help | ||
|
||
|
||
|
||
#============================================================================= | ||
# Special targets to cleanup operation of make. | ||
|
||
# Special rule to run CMake to check the build system integrity. | ||
# No rule that depends on this can have commands that come from listfiles | ||
# because they might be regenerated. | ||
cmake_check_build_system: | ||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 | ||
.PHONY : cmake_check_build_system | ||
|
Binary file added
BIN
+2.38 MB
programming_examples/basic/matrix_multiplication/whole_array/_build/matrixMultiplication
Binary file not shown.
Oops, something went wrong.