12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2011 Université de Bordeaux 1
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- /*
- * This program should be used to parse the log generated by FxT
- */
- #include <starpu.h>
- #include <starpu_fxt.h>
- static struct starpu_fxt_options options;
- static void parse_args(int argc, char **argv)
- {
- /* Default options */
- starpu_fxt_options_init(&options);
- /* We want to support arguments such as "fxt_tool -i trace_*" */
- unsigned reading_input_filenames = 0;
- int i;
- for (i = 1; i < argc; i++) {
- if (strcmp(argv[i], "-c") == 0) {
- options.per_task_colour = 1;
- reading_input_filenames = 0;
- continue;
- }
- if (strcmp(argv[i], "-o") == 0) {
- options.out_paje_path = argv[++i];
- reading_input_filenames = 0;
- continue;
- }
- if (strcmp(argv[i], "-i") == 0) {
- options.filenames[options.ninputfiles++] = argv[++i];
- reading_input_filenames = 1;
- continue;
- }
- if (strcmp(argv[i], "-no-counter") == 0) {
- options.no_counter = 1;
- reading_input_filenames = 0;
- continue;
- }
- if (strcmp(argv[i], "-no-bus") == 0) {
- options.no_bus = 1;
- reading_input_filenames = 0;
- continue;
- }
- if (strcmp(argv[i], "-h") == 0) {
- fprintf(stderr, "Usage : %s [-c] [-no-counter] [-no-bus] [-i input_filename] [-o output_filename]\n", argv[0]);
- fprintf(stderr, "\t-c: use a different colour for every type of task.\n");
- exit(-1);
- }
- /* That's pretty dirty: if the reading_input_filenames flag is
- * set, and that the argument does not match an option, we
- * assume this may be another filename */
- if (reading_input_filenames)
- {
- options.filenames[options.ninputfiles++] = argv[i];
- continue;
- }
- }
- }
- int main(int argc, char **argv)
- {
- parse_args(argc, argv);
- starpu_fxt_generate_trace(&options);
- return 0;
- }
|