summaryrefslogtreecommitdiffhomepage
path: root/tools/steps.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/steps.cc')
-rw-r--r--tools/steps.cc21
1 files changed, 11 insertions, 10 deletions
diff --git a/tools/steps.cc b/tools/steps.cc
index 551203c..3b61ef2 100644
--- a/tools/steps.cc
+++ b/tools/steps.cc
@@ -4,24 +4,25 @@ Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
------------------------------------------- */
-#include <lib/io/print.hpp>
-#include <libsteps/steps.h>
+#include <libocl/dev/lib/io/print.hpp>
+#include <libsteps/dev/lib/steps.hpp>
+/// =========================================================== ///
/// Use operators from steps namespace to compare steps records.
+/// =========================================================== ///
using namespace steps::operators;
/// =========================================================== ///
/// @brief Main function for running steps on NeKernel.
/// =========================================================== ///
-int main(int argc, char** argv)
-{
- ocl::io::print("steps: running steps for program...\n");
+int main(int argc, char **argv) {
+ ocl::io::print("steps: running steps for program...\n");
+
+ steps::record steps;
- steps::record steps;
+ /// AMLALE: Read steps from file and process them.
- /// AMLALE: Read steps from file and process them.
-
- ocl::io::print("steps: done!\n");
+ ocl::io::print("steps: done.\n");
- return EXIT_SUCCESS;
+ return EXIT_SUCCESS;
} \ No newline at end of file