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.

222 lines
7.4 KiB

  1. @ONLINE{intel:dsaspec,
  2. author = {Intel},
  3. title = {{Intel® Data Streaming Accelerator Architecture Specification}},
  4. date = {2022-09-16},
  5. url = {https://www.intel.com/content/www/us/en/content-details/671116/intel-data-streaming-accelerator-architecture-specification.html},
  6. urldate = {2023-11-15}
  7. }
  8. @ONLINE{intel:xeonbrief,
  9. author = {Intel},
  10. title = {{New Intel® Xeon® Platform Includes Built-In Accelerators for Encryption, Compression, and Data Movement}},
  11. date = {2022-12},
  12. url = {https://www.intel.com/content/dam/www/central-libraries/us/en/documents/2022-12/storage-engines-4th-gen-xeon-brief.pdf},
  13. urldate = {2023-11-15}
  14. }
  15. @ONLINE{intel:xeonmaxbrief,
  16. author = {Intel},
  17. title = {{Intel® Xeon® CPU Max Series Product Brief}},
  18. date = {2023-01-06},
  19. url = {https://www.intel.com/content/www/us/en/content-details/765259/intel-xeon-cpu-max-series-product-brief.html},
  20. urldate = {2024-01-18}
  21. }
  22. @ONLINE{intel:dsaguide,
  23. author = {Intel},
  24. title = {{Intel® Data Streaming Accelerator User Guide}},
  25. date = {2023-01-11},
  26. url = {https://www.intel.com/content/www/us/en/content-details/759709/intel-data-streaming-accelerator-user-guide.html},
  27. urldate = {2023-11-15}
  28. }
  29. @misc{intel:idxd-driver-repo,
  30. author = {Intel},
  31. title = {{Intel IDXD Driver for Linux Kernel}},
  32. publisher = {GitHub},
  33. journal = {GitHub repository},
  34. howpublished = {\url{https://github.com/intel/idxd-driver}},
  35. urldate = {2024-01-07}
  36. }
  37. @misc{intel:libaccel-config-repo,
  38. author = {Intel},
  39. title = {{Intel IDXD User Space Application}},
  40. publisher = {GitHub},
  41. journal = {GitHub repository},
  42. howpublished = {\url{https://github.com/intel/idxd-config}},
  43. urldate = {2024-01-07}
  44. }
  45. @misc{intel:dmldoc,
  46. author = {Intel},
  47. title = {{Intel Data Mover Library Documentation}},
  48. publisher = {GitHub},
  49. howpublished = {\url{https://intel.github.io/DML/documentation/api_docs/high_level_api.html}},
  50. urldate = {2024-01-07}
  51. }
  52. @ONLINE{intel:analysis,
  53. author = {Reese Kuper et al.},
  54. title = {{A Quantitative Analysis and Guideline of Data Streaming Accelerator in Intel® 4th Gen Xeon® Scalable Processors}},
  55. date = {2023-05},
  56. url = {https://arxiv.org/pdf/2305.02480.pdf},
  57. urldate = {2024-01-07}
  58. }
  59. @INPROCEEDINGS{atomics-cost-analysis,
  60. author={Schweizer, Hermann and Besta, Maciej and Hoefler, Torsten},
  61. booktitle={{2015 International Conference on Parallel Architecture and Compilation (PACT)}},
  62. title={{Evaluating the Cost of Atomic Operations on Modern Architectures}},
  63. year={2015},
  64. volume={},
  65. number={},
  66. pages={445-456},
  67. doi={10.1109/PACT.2015.24}
  68. }
  69. @ONLINE{cppreference:shared-ptr,
  70. author = {Unknown},
  71. title = {{CPP Reference Entry on std::shared_ptr<T>}},
  72. publisher = {cppreference},
  73. url = {https://en.cppreference.com/w/cpp/memory/shared_ptr},
  74. urldate = {2024-01-17}
  75. }
  76. @INPROCEEDINGS{shared-ptr-perf,
  77. author={T. Ku and N. Jung},
  78. booktitle={{Journal of Korea Game Society}},
  79. title={{Implementation of Lock-Free shared\_ptr and weak\_ptr for C++11 multi-thread programming}},
  80. year={2021},
  81. volume={21},
  82. number={1},
  83. pages={55-65},
  84. date = {2021-02-28},
  85. doi={10.7583/jkgs.2021.21.1.55.}
  86. }
  87. @ONLINE{cppreference:atomic-operations,
  88. author = {Unknown},
  89. title = {{CPP Reference List of Atomic Operations}},
  90. publisher = {cppreference},
  91. url = {https://en.cppreference.com/w/cpp/thread#Atomic_operations},
  92. urldate = {2024-01-18}
  93. }
  94. @ONLINE{cppreference:atomic-wait,
  95. author = {Unknown},
  96. title = {{CPP Reference Entry on std::atomic<T>::wait}},
  97. publisher = {cppreference},
  98. url = {https://en.cppreference.com/w/cpp/atomic/atomic/wait},
  99. urldate = {2024-01-18}
  100. }
  101. @ONLINE{cppreference:atomic-notify-one,
  102. author = {Unknown},
  103. title = {{CPP Reference Entry on std::atomic<T>::notify\_one}},
  104. publisher = {cppreference},
  105. url = {https://en.cppreference.com/w/cpp/atomic/atomic/notify_one},
  106. urldate = {2024-01-18}
  107. }
  108. @ONLINE{cppreference:atomic-notify-all,
  109. author = {Unknown},
  110. title = {{CPP Reference Entry on std::atomic<T>::notify\_all}},
  111. publisher = {cppreference},
  112. url = {https://en.cppreference.com/w/cpp/atomic/atomic/notify_all},
  113. urldate = {2024-01-18}
  114. }
  115. @ONLINE{cppreference:atomic-exchange,
  116. author = {Unknown},
  117. title = {{CPP Reference Entry on std::atomic<T>::exchange}},
  118. publisher = {cppreference},
  119. url = {https://en.cppreference.com/w/cpp/atomic/atomic/exchange},
  120. urldate = {2024-01-18}
  121. }
  122. @ONLINE{atomic-wait-details,
  123. author = {Thomas Rodgers},
  124. title = {{Implementing C++20 atomic waiting in libstdc++}},
  125. publisher = {Red Hat Developer Blog},
  126. date = {2022-12-06},
  127. urldate = {2024-01-18},
  128. url = {https://developers.redhat.com/articles/2022/12/06/implementing-c20-atomic-waiting-libstdc#how_can_we_implement_atomic_waiting_}
  129. }
  130. @ONLINE{amd:programmers-manual,
  131. author = {AMD},
  132. title = {{AMD64 Programmer's Manual Volume 2: System Programming}},
  133. date = {2016-12},
  134. urldate = {2024-01-18},
  135. url = {https://support.amd.com/TechDocs/24593.pdf}
  136. }
  137. @ONLINE{intel:programmers-manual,
  138. author = {Intel},
  139. title = {{Intel 64 and IA-32 Architectures Software Developer's Manual Volume 3A: System Programming Guide, Part 1}},
  140. date = {2016-12},
  141. urldate = {2024-01-18},
  142. url = {https://support.amd.com/TechDocs/24593.pdf}
  143. }
  144. @INPROCEEDINGS{hbm-arch-paper,
  145. author={Jun, Hongshin and Cho, Jinhee and Lee, Kangseol and Son, Ho-Young and Kim, Kwiwook and Jin, Hanho and Kim, Keith},
  146. booktitle={2017 IEEE International Memory Workshop (IMW)},
  147. title={HBM (High Bandwidth Memory) DRAM Technology and Architecture},
  148. year={2017},
  149. volume={},
  150. number={},
  151. pages={1-4},
  152. doi={10.1109/IMW.2017.7939084}
  153. }
  154. @misc{man-libnuma,
  155. author = {Debian},
  156. title = {{Debian manpage 3 for libnuma-dev}},
  157. urldate = {2024-01-21},
  158. url = {https://manpages.debian.org/bookworm/libnuma-dev/numa.3.en.html}
  159. }
  160. @ONLINE{lenovo:dsa,
  161. author = {Adrian Huang},
  162. title = {{Enabling Intel Data Streaming Accelerator on Lenovo ThinkSystem Servers}},
  163. urldate = {2022-04-18},
  164. url = {https://lenovopress.lenovo.com/lp1582.pdf}
  165. }
  166. @misc{thesis-repo,
  167. author = {Anatol Constantin Fürst},
  168. title = {{Accompanying Thesis Repository}},
  169. url = {https://git.constantin-fuerst.com/constantin/bachelor-thesis}
  170. }
  171. @ONLINE{lenovo:hbm,
  172. author = {Sam Kuo, Jimmy Cheng},
  173. title = {{Implementing High Bandwidth Memory and Intel Xeon Processors Max Series on Lenovo ThinkSystem Servers}},
  174. date = {2023-06-26},
  175. url = {https://lenovopress.lenovo.com/lp1738.pdf},
  176. urldate = {2024-01-21}
  177. }
  178. @ONLINE{intel:maxtuning,
  179. author = {Intel},
  180. title = {{Intel® Xeon® CPU Max Series Configuration and Tuning Guide}},
  181. date = {2023-08},
  182. url = {https://cdrdv2-public.intel.com/787743/354227-intel-xeon-cpu-max-series-configuration-and-tuning-guide-rev3.pdf},
  183. urldate = {2024-01-21}
  184. }
  185. @unpublished{dimes-prefetching,
  186. author = {André Berthold, Anna Bartuschka, Dirk Habich, Wolfgang Lehner and Horst Schirmeier},
  187. title = {{Towards Query-Driven Prefetching to Optimize Data Pipelines in Heterogeneous Memory Systems}},
  188. date = {2023},
  189. publisher = {ACM}
  190. }
  191. @ONLINE{microsoft:numa-malloc,
  192. author = {Microsoft},
  193. title = {{Allocating Memory from a NUMA Node}},
  194. date = {2021-07-01},
  195. url = {https://learn.microsoft.com/en-us/windows/win32/memory/allocating-memory-from-a-numa-node},
  196. urldate = {2024-01-28}
  197. }