summaryrefslogtreecommitdiffhomepage
path: root/tools/steps.cc
blob: 3b61ef2fc6a1d835d2427927a6720718d661624c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* -------------------------------------------

Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.

------------------------------------------- */

#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");

  steps::record steps;

  /// AMLALE: Read steps from file and process them.

  ocl::io::print("steps: done.\n");

  return EXIT_SUCCESS;
}