1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009, 2010 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
- *
- * 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.
- */
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
- unsigned size = 4*1024;
- unsigned nblocks = 16;
- unsigned nbigblocks = 2;
- unsigned noprio = 0;
- unsigned display = 0;
- unsigned dblockx = -1;
- unsigned dblocky = -1;
- void parse_args(int argc, char **argv)
- {
- int i;
- for (i = 1; i < argc; i++)
- {
- if (strcmp(argv[i], "-size") == 0)
- {
- char *argptr;
- size = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-dblockx") == 0)
- {
- char *argptr;
- dblockx = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-dblocky") == 0)
- {
- char *argptr;
- dblocky = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-nblocks") == 0)
- {
- char *argptr;
- nblocks = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-nbigblocks") == 0)
- {
- char *argptr;
- nbigblocks = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-no-prio") == 0)
- {
- noprio = 1;
- }
- if (strcmp(argv[i], "-display") == 0)
- {
- display = 1;
- }
- if (strcmp(argv[i], "-h") == 0)
- {
- printf("usage : %s [-display] [-size size] [-nblocks nblocks]\n", argv[0]);
- }
- }
- if (nblocks > size) nblocks = size;
- }
|