From cc7624415612166b3d0e5b6789fb032005758615 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 8 Jan 2025 18:50:18 -0500 Subject: [PATCH] python3? --- CMakeLists.txt | 2 +- src/MNIST.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f4467b..0fa0a52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Final-Project VERSION 0.0.14) +project(COSC-4P80-Final-Project VERSION 0.0.15) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/src/MNIST.cpp b/src/MNIST.cpp index 09d5520..1d61cdc 100644 --- a/src/MNIST.cpp +++ b/src/MNIST.cpp @@ -43,7 +43,7 @@ namespace fp void run_python_line_graph(const std::string& title, const std::string& output_file, const std::string& csv1, const std::string& csv2, const blt::size_t pos_forward, const blt::size_t pos_deep) { - const auto command = "python3 " + python_dual_stacked_graph_program + " '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' " + const auto command = "python3 '" + python_dual_stacked_graph_program + "' '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' " + std::to_string(pos_forward) + " " + std::to_string(pos_deep); BLT_TRACE("Running %s", command.c_str()); std::system(command.c_str());