diff --git a/doc/user/emulation/events.md b/doc/user/emulation/events.md index 4bd30df..c8737e6 100644 --- a/doc/user/emulation/events.md +++ b/doc/user/emulation/events.md @@ -1,7 +1,7 @@ # Emulator events This is a exhaustive list of the events recognized by the emulator. -Built on Apr 28 2025. +Built on May 2 2025. ## Model nanos6 @@ -437,7 +437,7 @@ List of events for the model *ovni* with identifier **`O`** at version `1.1.0`: ## Model openmp -List of events for the model *openmp* with identifier **`P`** at version `1.2.0`: +List of events for the model *openmp* with identifier **`P`** at version `1.2.1`:
PBb
begins plain barrier
diff --git a/doc/user/emulation/versions.md b/doc/user/emulation/versions.md index b7649ae..ed5101e 100644 --- a/doc/user/emulation/versions.md +++ b/doc/user/emulation/versions.md @@ -33,6 +33,8 @@ Track changes in emulator model versions. ## OpenMP +- openmp 1.2.1: + - Fix task events so they don't overlap with re-executions - openmp 1.2.0: - Add support for labels and task ID views - openmp 1.1.0: Initial version diff --git a/src/emu/openmp/setup.c b/src/emu/openmp/setup.c index f835932..db31cbe 100644 --- a/src/emu/openmp/setup.c +++ b/src/emu/openmp/setup.c @@ -82,7 +82,7 @@ static struct ev_decl model_evlist[] = { struct model_spec model_openmp = { .name = model_name, - .version = "1.2.0", + .version = "1.2.1", .evlist = model_evlist, .model = model_id, .create = model_openmp_create,