2023-10-23 15:12:43 +02:00
|
|
|
/* Copyright (c) 2021-2024 Barcelona Supercomputing Center (BSC)
|
2022-09-19 12:39:02 +02:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
2022-06-03 11:36:27 +02:00
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "compat.h"
|
|
|
|
#include "instr.h"
|
2022-08-23 16:40:44 +02:00
|
|
|
#include "instr_nosv.h"
|
2022-06-03 11:36:27 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
int rank = atoi(getenv("OVNI_RANK"));
|
|
|
|
int nranks = atoi(getenv("OVNI_NRANKS"));
|
|
|
|
instr_start(rank, nranks);
|
2023-11-10 12:34:57 +01:00
|
|
|
instr_nosv_init();
|
2022-06-03 11:36:27 +02:00
|
|
|
|
|
|
|
int us = 500;
|
|
|
|
uint32_t typeid = 1;
|
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
instr_nosv_type_create(typeid);
|
|
|
|
instr_nosv_task_create(1, typeid);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_execute(1, 0);
|
2023-03-22 16:01:55 +01:00
|
|
|
sleep_us(us);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_pause(1, 0);
|
2023-03-22 16:01:55 +01:00
|
|
|
sleep_us(us);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_resume(1, 0);
|
2023-03-22 16:01:55 +01:00
|
|
|
sleep_us(us);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_end(1, 0);
|
2022-06-03 11:36:27 +02:00
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|