Difference between revisions of "CSC352 Syllabus -- Spring 2017"
(→Newsletter) |
(→Software) |
||
Line 143: | Line 143: | ||
* Java and [http://www.eclipse.org/ Eclipse]. All serious programmers should know how to use Eclipse, and should have it installed on their computer. One advantage of having Eclipse is that it supports Processing with very little additional effort (see [[Tutorials#Processing_and_Eclipse | these tutorials]] for examples of how to set this up). | * Java and [http://www.eclipse.org/ Eclipse]. All serious programmers should know how to use Eclipse, and should have it installed on their computer. One advantage of having Eclipse is that it supports Processing with very little additional effort (see [[Tutorials#Processing_and_Eclipse | these tutorials]] for examples of how to set this up). | ||
* Latex for writing scientific papers. [http://texstudio.sourceforge.net/ TexStudio] is a good visual editor, but there is also a nice on-line editor at [https://www.sharelatex.com/ sharelatex.com] that does not require any installation and works well. | * Latex for writing scientific papers. [http://texstudio.sourceforge.net/ TexStudio] is a good visual editor, but there is also a nice on-line editor at [https://www.sharelatex.com/ sharelatex.com] that does not require any installation and works well. | ||
− | * [http://matplotlib.org/users/intro.html MatPlotLib] for processing data and generating graphs. | + | * [http://matplotlib.org/users/intro.html MatPlotLib] or [http://www.harding.edu/fmccown/r/ R] for processing data and generating graphs. |
* [http://www.mpich.org/ MPI], the Message-Passing Interface platform for parallel programs. It is installed on beowulf and beowulf2, but you may like to also have it on your computer, although it is not necessary. | * [http://www.mpich.org/ MPI], the Message-Passing Interface platform for parallel programs. It is installed on beowulf and beowulf2, but you may like to also have it on your computer, although it is not necessary. | ||
<br /> | <br /> |
Revision as of 11:23, 5 December 2016
--D. Thiebaut (talk) 10:32, 17 October 2016 (EDT)
|
Limited Enrollment
This class is a seminar, with limited enrollment. Make sure you pre-register early to be able to get in. Priority will be given to
- Seniors, CS majors
- Juniors, CS majors
- CS & SDS majors
- Others
Instructor
Prof. Dominique Thiébaut (dthiebaut at smith.edu)
Dept. Computer Science
Ford Hall 356
Telephone: 3854
Office hours Wed 1-4 p.m. and by appointments
Introduction
Parallel and Distributed Processing is a seminar mixing theory, programming and research. It explores the issues facing today's programmers in need of process data existing in either a large volume, or distributed over a network (local area, or wide area).
The goal of the seminar is to understand how to devise solutions for the various tasks required to process, catalog, sort, and display such a large amount of data. In the process we will investigate various parallel computing tools, and test different approaches to solve this problem in an acceptable time (minutes or hours rather than days or years of computation!).
The class mixes lectures, the reading and presentation of research papers, and programming assignments/projects.
Topics Covered
- Writing research papers with Latex
- Taxonomy of parallel architectures
- The elementary parallel concept: processor interrupts in the 80X86 processor
- Differences between processes and threads
- Data-sharing programming with Java threads, how to avoid data inconsistency and deadlocks with mutexes, locks and semaphores.
- Learning the language C and working in a Bash console
- Message-Passing with MPI
- Manager-Worker paradigm on MPI
- MPI and "MySQL
- Amdahl's law
- Data caching
- Creating an MPI cluster and running applications on it
- MapReduce and Hadoop. Running Hadoop applications
A group project will cap the end of the semester. The goal of the project will be to pick a topic or problem, generate a parallel solution to solve it, and comparing its performance to the current state of the art, and reporting the results in a research paper written in Latex.
Newsletter
Students will be responsible for generating a 2-page newsletter every other week.
Homework assignments/Projects
There will be homework assignments and a project. The homework assignments will contribute to the advancement of the overall project.
Piazza
On an experimental basis, we will use Piazza four on-line discussion of issues related to the class material. The system is catered to getting you help fast and efficiently from classmates, and your instructor. When a question is about an assignment, a software bug, or something the whole class could benefit knowing about, you are encouraged to post your questions on Piazza.
Find our class page at: https://piazza.com/smith/spring2017/csc352/home, and its user guide here.
Smith Cloud
We will use different computer clusters available on campus. More information will be released as the course progresses.
Presentations
We'll read, present and discuss papers during the semester. Papers will be posted on the Links & Resources page. More information will be available as we proceed through the semester.
Whenever a paper is scheduled for presentation or discussion, everybody not presenting the paper will be responsible for handing out at the beginning of the class a one-page summary of the paper, formatted in Latex.
Prerequisites
Algorithms CSC252, or permission of the instructor. A good knowledge of Java is important.
Schedule
The class meets twice a week, on Tuesdays and Thursdays, 1:00-2:50 p.m., in Ford Hall 345.
Textbook
There are no textbooks for this course. The Web has a rich collection of documents we'll be using and which are catalogued in the Links & Resources page.
Other Sources of Material
The science library has a good collection of books on parallel processing and algorithms that you might find useful for supplementing the material presented and covered in class. "Parallel algorithm", "Parallel Programming," or "Grid Computing" are good keywords to start a search on.
Lateness Policy
No late assignment/paper summariy/project will be accepted (except in case of documented illness or personal difficulties). Do your work on time!
You can, however, drop any one homework assignment and any one reading assignment without penalty. If you do not drop any assignment and do not drop any assigned reading, I will remove the ones with the lowest grade automatically.
Grading
Class participation (summaries, class notes, discussion) |
10% |
Teaching Assistants
No TA for this class.
Software
Below is a non-exhaustive list of software packages we'll use in the class. You may want to investigate installing them on your computer.
- Java and Eclipse. All serious programmers should know how to use Eclipse, and should have it installed on their computer. One advantage of having Eclipse is that it supports Processing with very little additional effort (see these tutorials for examples of how to set this up).
- Latex for writing scientific papers. TexStudio is a good visual editor, but there is also a nice on-line editor at sharelatex.com that does not require any installation and works well.
- MatPlotLib or R for processing data and generating graphs.
- MPI, the Message-Passing Interface platform for parallel programs. It is installed on beowulf and beowulf2, but you may like to also have it on your computer, although it is not necessary.