Add missing bench6.h file

This commit is contained in:
Rodrigo Arias 2023-05-18 19:43:48 +02:00
parent 0ef60b870a
commit c543a5582c
2 changed files with 17 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
data
bench6.*

17
src/bench6/bench6.h Normal file
View File

@ -0,0 +1,17 @@
/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#ifndef BENCH6_H
#define BENCH6_H
#define UNUSED(x) (void)(x)
double get_time(void);
int get_ncpus(void);
int bench6_creator(int argc, char *argv[]);
int bench6_sched_get(int argc, char *argv[]);
int bench6_sched_add(int argc, char *argv[]);
int bench6_register_deps(int argc, char *argv[]);
#endif /* BENCH6_H */