starpu_bitmap.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2013-2015 CNRS
  4. * Copyright (C) 2013,2016 Université de Bordeaux
  5. * Copyright (C) 2013 Simon Archipoff
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #ifndef __STARPU_BITMAP_H__
  19. #define __STARPU_BITMAP_H__
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. struct starpu_bitmap *starpu_bitmap_create(void) STARPU_ATTRIBUTE_MALLOC;
  25. void starpu_bitmap_destroy(struct starpu_bitmap *b);
  26. void starpu_bitmap_set(struct starpu_bitmap *b, int e);
  27. void starpu_bitmap_unset(struct starpu_bitmap *b, int e);
  28. void starpu_bitmap_unset_all(struct starpu_bitmap *b);
  29. int starpu_bitmap_get(struct starpu_bitmap *b, int e);
  30. void starpu_bitmap_unset_and(struct starpu_bitmap *a, struct starpu_bitmap *b, struct starpu_bitmap *c);
  31. void starpu_bitmap_or(struct starpu_bitmap *a, struct starpu_bitmap *b);
  32. int starpu_bitmap_and_get(struct starpu_bitmap *b1, struct starpu_bitmap *b2, int e);
  33. int starpu_bitmap_cardinal(struct starpu_bitmap *b);
  34. int starpu_bitmap_first(struct starpu_bitmap *b);
  35. int starpu_bitmap_last(struct starpu_bitmap *b);
  36. int starpu_bitmap_next(struct starpu_bitmap *b, int e);
  37. int starpu_bitmap_has_next(struct starpu_bitmap *b, int e);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif