From b1ce60442267159a4609582920cf4c6edcdf692b Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 14 Sep 2021 08:18:03 -0500 Subject: Start 5451 ass1 Signed-off-by: Matt Strapp --- csci5451/ass1.tex | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 csci5451/ass1.tex 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 -- cgit v1.2.3