From 73adafc405eae26d9c65809ca5612967b8f534cb Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 19 Nov 2025 19:41:49 +0100 Subject: feat: libsteps: improvements on the steps library. Signed-off-by: Amlal El Mahrouss --- tools/steps.cc | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'tools') 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 -#include +#include +#include +/// =========================================================== /// /// 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 -- cgit v1.2.3