From b06644394e3a5b4569061d6a7a7a4ebdd4152842 Mon Sep 17 00:00:00 2001 From: erwei-xilinx Date: Wed, 6 Nov 2024 17:26:06 -0800 Subject: [PATCH] Fixup .o file path in Makefile --- .../block_quantized_i8/single_core/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming_examples/vector_matrix_multiplication/block_quantized_i8/single_core/Makefile b/programming_examples/vector_matrix_multiplication/block_quantized_i8/single_core/Makefile index 68762163b..7d2f46f79 100644 --- a/programming_examples/vector_matrix_multiplication/block_quantized_i8/single_core/Makefile +++ b/programming_examples/vector_matrix_multiplication/block_quantized_i8/single_core/Makefile @@ -11,8 +11,8 @@ print: run: mkdir -p build - cd build && ${powershell} xchesscc_wrapper aie2 -c ${srcdir}/vm.cc -o ${srcdir}/vm.o - ${powershell} python3 ${srcdir}/single_core.py + cd build && ${powershell} xchesscc_wrapper aie2 -c ${srcdir}/vm.cc -o vm.o + cd build && ${powershell} python3 ${srcdir}/single_core.py clean: rm -rf build __pycache__