aboutsummaryrefslogtreecommitdiffstats
path: root/csci5451/ass1.tex
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2021-09-14 08:18:03 -0500
committerMatt Strapp <matt@mattstrapp.net>2021-09-14 08:18:03 -0500
commitb1ce60442267159a4609582920cf4c6edcdf692b (patch)
tree1a43b5eb8edc6bf22d3c1be03ee886d2310d3d79 /csci5451/ass1.tex
parentMerge pull request #3 from RosstheRoss/dependabot/pip/OLD/csci4511w/colab/HW5... (diff)
downloadhomework-b1ce60442267159a4609582920cf4c6edcdf692b.tar
homework-b1ce60442267159a4609582920cf4c6edcdf692b.tar.gz
homework-b1ce60442267159a4609582920cf4c6edcdf692b.tar.bz2
homework-b1ce60442267159a4609582920cf4c6edcdf692b.tar.lz
homework-b1ce60442267159a4609582920cf4c6edcdf692b.tar.xz
homework-b1ce60442267159a4609582920cf4c6edcdf692b.tar.zst
homework-b1ce60442267159a4609582920cf4c6edcdf692b.zip
Start 5451 ass1
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'csci5451/ass1.tex')
-rw-r--r--csci5451/ass1.tex19
1 files changed, 19 insertions, 0 deletions
diff --git a/csci5451/ass1.tex b/csci5451/ass1.tex
new file mode 100644
index 0000000..0124d95
--- /dev/null
+++ b/csci5451/ass1.tex
@@ -0,0 +1,19 @@
+\documentclass[12pt]{article}
+\usepackage{fullpage}\usepackage{indentfirst}
+
+\begin{document}
+ \section{Question 1}
+ \subsection{Overlapping Intervals}
+ \subsection{Non-Overlapping Intervals}
+ \section{Question 2}
+ \subsection{}
+ Shared memory has all of the processors access one large pool of memory while distributed memory has each processor have a section of the memory.
+ \subsection{}
+ Distributed memory programs communicate via pipes and message queues while shared memory programs share memory with locks in place to prevent unintended behavior and race conditions.
+ \subsection{}
+ Shared memory is in most devices nowadays with even phones having multiple cores and a single bank of shared memory. Large rendering farms and HPC will have distributed memory to split rendering or to maximize performance.
+ \subsection{}
+ Distributed is easier to scale because the cluster can have nodes added or removed easily without affecting the other nodes.
+ \section{Question 3}
+
+\end{document} \ No newline at end of file