| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2013-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
- * Copyright (C) 2013 Corentin Salingue
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU 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 Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <fcntl.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include <stdint.h>
- #include <common/config.h>
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <starpu.h>
- #include <core/disk.h>
- #include <core/perfmodel/perfmodel.h>
- #include <core/disk_ops/unistd/disk_unistd_global.h>
- /* ------------------- use UNISTD to write on disk ------------------- */
- /* allocation memory on disk */
- static void *starpu_unistd_alloc(void *base, size_t size)
- {
- struct starpu_unistd_global_obj *obj;
- _STARPU_MALLOC(obj, sizeof(struct starpu_unistd_global_obj));
- /* only flags change between unistd and unistd_o_direct */
- obj->flags = O_RDWR | O_BINARY;
- return starpu_unistd_global_alloc(obj, base, size);
- }
- /* open an existing memory on disk */
- static void *starpu_unistd_open(void *base, void *pos, size_t size)
- {
- struct starpu_unistd_global_obj *obj;
- _STARPU_MALLOC(obj, sizeof(struct starpu_unistd_global_obj));
- /* only flags change between unistd and unistd_o_direct */
- obj->flags = O_RDWR | O_BINARY;
- return starpu_unistd_global_open(obj, base, pos, size);
- }
- struct starpu_disk_ops starpu_disk_unistd_ops =
- {
- .alloc = starpu_unistd_alloc,
- .free = starpu_unistd_global_free,
- .open = starpu_unistd_open,
- .close = starpu_unistd_global_close,
- .read = starpu_unistd_global_read,
- .write = starpu_unistd_global_write,
- .plug = starpu_unistd_global_plug,
- .unplug = starpu_unistd_global_unplug,
- #ifdef STARPU_UNISTD_USE_COPY
- .copy = starpu_unistd_global_copy,
- #else
- .copy = NULL,
- #endif
- .bandwidth = get_unistd_global_bandwidth_between_disk_and_main_ram,
- #ifdef HAVE_AIO_H
- .async_read = starpu_unistd_global_async_read,
- .async_write = starpu_unistd_global_async_write,
- .async_full_read = starpu_unistd_global_async_full_read,
- .async_full_write = starpu_unistd_global_async_full_write,
- .wait_request = starpu_unistd_global_wait_request,
- .test_request = starpu_unistd_global_test_request,
- .free_request = starpu_unistd_global_free_request,
- #endif
- .full_read = starpu_unistd_global_full_read,
- .full_write = starpu_unistd_global_full_write
- };
|