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.

12 lines
438 B

  1. \usepackage{xparse}
  2. \DeclareDocumentCommand{\newdualentry}{ O{} O{} m m m m } {
  3. \newglossaryentry{gls-#3}{name={#5},text={#5\glsadd{#3}},
  4. description={#6},#1
  5. }
  6. \makeglossaries
  7. \newacronym{#3}{#4}{see Glossary on: \gls{gls-#3}}
  8. }
  9. \newdualentry{iommu}{IOMMU}{Input/Output Memory Management Unit}{... desc ...}
  10. \newdualentry{bar}{BAR}{Base Address Register}{... desc ...}
  11. \newacronym{dsa}{DSA}{Intel Data Streaming Accelerator}