This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
552 B

  1. /* Notes */ /*{{{C}}}*//*{{{*/
  2. /*
  3. This file is free software; as a special exception the author gives
  4. unlimited permission to copy and/or distribute it, with or without
  5. modifications, as long as this notice is preserved.
  6. This program is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  8. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. */
  10. /*}}}*/
  11. #ifndef MISC_H
  12. #define MISC_H
  13. #ifdef BROKEN_REALLOC
  14. #define realloc(p,s) myrealloc(p,s)
  15. #endif
  16. #endif