Add a tool to sort unordered events
The region of past events must be enclosed by the OU[ and OU] events and all the events within the region must be sorted. The sorting mechanism looks back up to 10000 events, so it may fail if they are too far away in the past.
This commit is contained in:
parent
766feb9fab
commit
2961254838
@ -101,6 +101,13 @@ add_executable(ovni2prv
|
|||||||
parson.c
|
parson.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_executable(ovnisort
|
||||||
|
sort.c
|
||||||
|
ovni.c
|
||||||
|
trace.c
|
||||||
|
parson.c
|
||||||
|
)
|
||||||
|
|
||||||
# Use <PackageName>_ROOT variables if available, commonly used by MPI
|
# Use <PackageName>_ROOT variables if available, commonly used by MPI
|
||||||
# installations
|
# installations
|
||||||
if(POLICY CMP0074)
|
if(POLICY CMP0074)
|
||||||
@ -112,6 +119,6 @@ add_executable(ovnisync ovnisync.c)
|
|||||||
target_link_libraries(ovnisync m MPI::MPI_C)
|
target_link_libraries(ovnisync m MPI::MPI_C)
|
||||||
|
|
||||||
install(TARGETS ovni LIBRARY DESTINATION lib)
|
install(TARGETS ovni LIBRARY DESTINATION lib)
|
||||||
install(TARGETS ovniemu ovnidump ovni2prv ovnisync RUNTIME DESTINATION bin)
|
install(TARGETS ovniemu ovnidump ovni2prv ovnisync ovnisort RUNTIME DESTINATION bin)
|
||||||
install(FILES ovni.h DESTINATION include)
|
install(FILES ovni.h DESTINATION include)
|
||||||
install(DIRECTORY cfg/ DESTINATION share/ovni)
|
install(DIRECTORY cfg/ DESTINATION share/ovni)
|
||||||
|
@ -26,6 +26,9 @@ OAr Remotely switches the affinity of the given thread
|
|||||||
|
|
||||||
OB. Emits a burst event to measure latency
|
OB. Emits a burst event to measure latency
|
||||||
|
|
||||||
|
OU[ Enters a region which contain past events (HACK)
|
||||||
|
OU] Exits the region of past events (HACK)
|
||||||
|
|
||||||
-------------------- nOS-V (model=V) ----------------------
|
-------------------- nOS-V (model=V) ----------------------
|
||||||
|
|
||||||
VTc Creates a new task (punctual event)
|
VTc Creates a new task (punctual event)
|
||||||
|
292
sort.c
Normal file
292
sort.c
Normal file
@ -0,0 +1,292 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2021 Barcelona Supercomputing Center (BSC)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* This program is a really bad idea. It attempts to sort streams by using a
|
||||||
|
* window of the last N events in memory, so we can quickly access the event
|
||||||
|
* clocks. Then, as soon as we detect a region of potentially unsorted events,
|
||||||
|
* we go back until we find a suitable position and start injecting the events
|
||||||
|
* in order.
|
||||||
|
*
|
||||||
|
* The events inside a unsorted region must be ordered. And the number of events
|
||||||
|
* that we will look back is limited by N.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <linux/limits.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <stdatomic.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
|
||||||
|
#include "ovni.h"
|
||||||
|
#include "trace.h"
|
||||||
|
#include "emu.h"
|
||||||
|
|
||||||
|
struct ring {
|
||||||
|
ssize_t head;
|
||||||
|
ssize_t tail;
|
||||||
|
ssize_t size;
|
||||||
|
struct ovni_ev **ev;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct sortplan {
|
||||||
|
/* The first and last events which need sorting */
|
||||||
|
struct ovni_ev *bad0;
|
||||||
|
struct ovni_ev *bad1;
|
||||||
|
|
||||||
|
/* The first event in the stream that may be affected */
|
||||||
|
struct ovni_ev *first;
|
||||||
|
|
||||||
|
/* The next event which must be not affected */
|
||||||
|
struct ovni_ev *next;
|
||||||
|
|
||||||
|
struct ring *r;
|
||||||
|
};
|
||||||
|
|
||||||
|
static void
|
||||||
|
ring_reset(struct ring *r)
|
||||||
|
{
|
||||||
|
r->head = r->tail = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
ring_add(struct ring *r, struct ovni_ev *ev)
|
||||||
|
{
|
||||||
|
r->ev[r->tail] = ev;
|
||||||
|
r->tail++;
|
||||||
|
|
||||||
|
if(r->tail >= r->size)
|
||||||
|
r->tail = 0;
|
||||||
|
|
||||||
|
if(r->head == r->tail)
|
||||||
|
r->head = r->tail + 1;
|
||||||
|
|
||||||
|
if(r->head >= r->size)
|
||||||
|
r->head = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ssize_t
|
||||||
|
find_destination(struct ring *r, uint64_t clock)
|
||||||
|
{
|
||||||
|
ssize_t i, start, end;
|
||||||
|
|
||||||
|
start = r->tail - 1 >= 0 ? r->tail - 1 : r->size - 1;
|
||||||
|
end = r->head - 1 >= 0 ? r->head - 1 : r->size - 1;
|
||||||
|
|
||||||
|
for(i=start; i != end; i = i-1 < 0 ? r->size : i-1)
|
||||||
|
{
|
||||||
|
if(r->ev[i]->header.clock < clock)
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
starts_unsorted_region(struct ovni_ev *ev)
|
||||||
|
{
|
||||||
|
return ev->header.model == 'O' &&
|
||||||
|
ev->header.category == 'U' &&
|
||||||
|
ev->header.value == '[';
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
ends_unsorted_region(struct ovni_ev *ev)
|
||||||
|
{
|
||||||
|
return ev->header.model == 'O' &&
|
||||||
|
ev->header.category == 'U' &&
|
||||||
|
ev->header.value == ']';
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sort_buf(uint8_t *src, uint8_t *buf, int64_t bufsize,
|
||||||
|
uint8_t *srcbad, uint8_t *srcnext)
|
||||||
|
{
|
||||||
|
uint8_t *p, *q;
|
||||||
|
int64_t evsize;
|
||||||
|
struct ovni_ev *ep, *eq, *ev;
|
||||||
|
|
||||||
|
p = src;
|
||||||
|
q = srcbad;
|
||||||
|
|
||||||
|
while(1)
|
||||||
|
{
|
||||||
|
ep = (struct ovni_ev *) p;
|
||||||
|
eq = (struct ovni_ev *) q;
|
||||||
|
|
||||||
|
if(p < srcbad && ep->header.clock < eq->header.clock)
|
||||||
|
{
|
||||||
|
ev = ep;
|
||||||
|
evsize = ovni_ev_size(ev);
|
||||||
|
p += evsize;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ev = eq;
|
||||||
|
evsize = ovni_ev_size(ev);
|
||||||
|
q += evsize;
|
||||||
|
}
|
||||||
|
|
||||||
|
if((uint8_t *) ev == srcnext)
|
||||||
|
break;
|
||||||
|
|
||||||
|
assert((uint8_t *) ev < srcnext);
|
||||||
|
|
||||||
|
printf("copying %ld bytes from %p to %p (srcnext=%p bufsize=%ld)\n",
|
||||||
|
evsize, (void *) ev, buf, srcnext, bufsize);
|
||||||
|
|
||||||
|
assert(bufsize >= evsize);
|
||||||
|
memcpy(buf, ev, evsize);
|
||||||
|
buf += evsize;
|
||||||
|
bufsize -= evsize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
execute_sort_plan(struct sortplan *sp)
|
||||||
|
{
|
||||||
|
int64_t i0, bufsize;
|
||||||
|
uint8_t *buf;
|
||||||
|
|
||||||
|
/* Cannot sort in one pass; just fail for now */
|
||||||
|
if((i0 = find_destination(sp->r, sp->bad0->header.clock)) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
/* Set the pointer to the first event */
|
||||||
|
sp->first = sp->r->ev[i0];
|
||||||
|
|
||||||
|
/* Allocate a working buffer */
|
||||||
|
bufsize = ((int64_t) sp->next) - ((int64_t) sp->first);
|
||||||
|
|
||||||
|
buf = malloc(bufsize);
|
||||||
|
assert(buf);
|
||||||
|
|
||||||
|
sort_buf((uint8_t *) sp->first, buf, bufsize,
|
||||||
|
(uint8_t *) sp->bad0, (uint8_t *) sp->next);
|
||||||
|
|
||||||
|
/* Copy the sorted events back into the stream buffer */
|
||||||
|
memcpy(sp->first, buf, bufsize);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sort the events in the stream chronologically using a ring */
|
||||||
|
static int
|
||||||
|
stream_winsort(struct ovni_stream *stream, struct ring *r)
|
||||||
|
{
|
||||||
|
ssize_t i;
|
||||||
|
struct ovni_ev *ev;
|
||||||
|
struct sortplan sp = {0};
|
||||||
|
//uint64_t lastclock = 0;
|
||||||
|
char st = 'S';
|
||||||
|
|
||||||
|
ring_reset(r);
|
||||||
|
sp.r = r;
|
||||||
|
|
||||||
|
for(i=0; stream->active; i++)
|
||||||
|
{
|
||||||
|
ovni_load_next_event(stream);
|
||||||
|
ev = stream->cur_ev;
|
||||||
|
|
||||||
|
if(st == 'S' && starts_unsorted_region(ev))
|
||||||
|
{
|
||||||
|
st = 'U';
|
||||||
|
}
|
||||||
|
else if(st == 'U')
|
||||||
|
{
|
||||||
|
st = 'X';
|
||||||
|
sp.bad0 = ev;
|
||||||
|
}
|
||||||
|
else if(st == 'X')
|
||||||
|
{
|
||||||
|
if(ends_unsorted_region(ev))
|
||||||
|
{
|
||||||
|
sp.next = ev;
|
||||||
|
execute_sort_plan(&sp);
|
||||||
|
st = 'S';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sp.bad1 = ev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ring_add(r, ev);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sort_streams(struct ovni_trace *trace)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
struct ovni_stream *stream;
|
||||||
|
struct ring ring;
|
||||||
|
|
||||||
|
ring.size = 10000;
|
||||||
|
ring.ev = malloc(ring.size * sizeof(struct ovni_ev *));
|
||||||
|
|
||||||
|
assert(ring.ev);
|
||||||
|
|
||||||
|
for(i=0; i<trace->nstreams; i++)
|
||||||
|
{
|
||||||
|
stream = &trace->stream[i];
|
||||||
|
stream_winsort(stream, &ring);
|
||||||
|
}
|
||||||
|
|
||||||
|
free(ring.ev);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
char *tracedir;
|
||||||
|
struct ovni_trace *trace;
|
||||||
|
|
||||||
|
trace = calloc(1, sizeof(struct ovni_trace));
|
||||||
|
|
||||||
|
if(trace == NULL)
|
||||||
|
{
|
||||||
|
perror("calloc");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(argc != 2)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "missing tracedir\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
tracedir = argv[1];
|
||||||
|
|
||||||
|
if(ovni_load_trace(trace, tracedir))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
if(ovni_load_streams(trace))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
sort_streams(trace);
|
||||||
|
|
||||||
|
ovni_free_streams(trace);
|
||||||
|
|
||||||
|
free(trace);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user