15 lines
348 B
C
15 lines
348 B
C
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#ifndef MODELS_H
|
|
#define MODELS_H
|
|
|
|
#include "common.h"
|
|
struct model;
|
|
|
|
USE_RET int models_register(struct model *model);
|
|
USE_RET const char *models_get_version(const char *name);
|
|
void models_print(void);
|
|
|
|
#endif /* MODELS_H */
|