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.

11 lines
457 B

  1. def main():
  2. print("This is doing nothing!")
  3. # test all for sizes 1KiB - 64kKiB / 64MiB increasing exponentially
  4. # test ddr->ddr, ddr->hbm, hbm->hbm, hbm->ddr
  5. # test for both-local, one-local, no-local engine
  6. # test for single thread and multi thread on one engine
  7. # test for single thread with other thread(s) working on disjoint set of node but possibly overlapping source/destination memory
  8. if __name__ == "__main__":
  9. main()