Create gem5-ProjectProposalTemplate.txt

main
w-feng 2 years ago committed by GitHub
parent 3594450bb0
commit 1918f83bc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,80 @@
Template for Project Proposal

At the end of this write-up, you will find a list of sample ideas for final projects. Whether you choose one of the project ideas or propose a project idea of your own, you must flesh out your project idea into a modest proposal write-up. The proposal write-up should consist of the following and not exceed four (4) pages; references may appear on a separate fifth page, if needed:
1. Abstract
• This summarizes what you are proposing along with expected artifacts and/or outcomes
2. Introduction
• This motivates and frames your project proposal. Why is it important to do your proposal from a technical research perspective?
3. Related Work
• This presents research work that has been done and is related to yours. (Make sure to always cite your sources.)
4. Proposal
• This is where the “meat” of your proposal will be. Articulate what you are proposing in sufficient detail that it can be followed and reproduced.
• What expectations, if any, do you have with respect to result(s)?
5. Timeline
• This will provide a proposed timeline of milestones. It is highly recommended that you come up with a weekly schedule of milestones, while also making sure to leave sufficient time to transform your proposal write-up into a final project research paper.
6. References
• This is a list of citations of related work for your proposal.


For this project proposal and for the final project, you may work in groups of two (with the expectation that the scope of the project will be proportional to the number of people in the group). While it is recommended to work in groups of two so you can get something a bit more substantive done, working alone is also fine. It is highly recommended that a github repository be configured for your team to house any tangible artifacts or experimental results, which in turn, you will report on in your final project research paper.


Your Task
• You must identify and propose a non-trivial project in parallel computer architecture. Ideally, the project would align with or relate to your research interests, whether you propose your own idea or select from the project list at the end of this write-up.


Task Outline: Guidelines
1. Provide a project title and author list for your project proposal.
2. Identify a project idea (or goal) and describe it in a paragraph or two.
3. Scope the extent of the project, e.g., start with a bulleted list of what you propose to do.
• What do you propose to do?
• Why is it important?
• What is the current “state of the art” in the literature? How is what you propose similar or different? In short, do a literature search to understand the context of what you are proposing and cite your references in your project proposal. (It is ok to update, validate, and verify existing research results but for current CPU and GPU hardware technology. In addition, you must cite the research that you are updating, validating, and verifying.)
• What will your approach be towards achieving what you propose? In short, explain your approach in further detail.
• Articulate the resources, particularly computing infrastructure, that you will use to complete your project.
4. The project proposal should not exceed four (4) pages in length, not including references (i.e., references may spill onto additional pages beyond the 5 pages), in IEEE conference format: https://www.ieee.org/conferences_events/conferences/publishing/templates.html


What to Submit
• Everyone must submit their proposal to Canvas.
• If you work in a team to two,
o Your submissions should be identical and should explicitly specify the team members.
o You should keep a journal or blog of project progress to document your progress, preferably on the aforementioned github repository.
o You must remember that the expectation is that the scope of the project will be proportional to the number of people in your group.

SAMPLE PROJECT IDEAS

Simulation-Based Projects for the POWER Instruction Set Architecture (ISA)
1. Systems-Based Projects
Note: The gem5 build for the POWER ISA supports integer arithmetic, but it does not support floating-point arithmetic, file I/O operations, and random number generation. So, to evaluate system-based projects on gem5 for the POWER ISA, use application workloads that do not require the unsupported features.
a. [gem5]: Implementation of one or more system-level features in gem5 for POWER ISA, e.g., as noted above, floating-point arithmetic, file I/O operations, and/or random number generation.
b. [gem5]: Performance evaluation of a three-level cache hierarchy in gem5
• Add support for L3 caches in your configuration script and evaluate the performance of at least two workloads on the POWER8 and POWER9 architectures. Do the results provide insight as to why IBM changed their memory hierarchy between POWER8 and POWER9?
• Vary the L1, L2, and L3 cache parameters and identify the best cache configuration for representative workloads of your choice, e.g., floating-point intensive vs. integer intensive.
c. [gem5]: Implementation of an out-of-order execution CPU (i.e., O3CPU) that supports the POWER ISA
• Debug existing issues with the O3CPU implementation in gem5 for POWER ISA
• Add the necessary support in the O3CPU model for POWER ISA (https://www.gem5.org/documentation/general_docs/cpu_models/O3CPU
d. [gem5]: For one or more workloads of your choice, vary the configuration parameters in gem5 (e.g., cache size, associativity, replacement policy, branch prediction policy) and identify the best configuration for the workload(s).
e. [gem5]: Performance evaluation of one (or more) workloads of your choice on multiple architectures (POWER/x86/ARM) in gem5, i.e., fix your workload but vary the ISA, to understand the efficacy a particular ISA has on a particular workload or workloads. Present a thorough quantitative and qualitative analysis of the performance.
f. [gem5]: Modeling and evaluation CPU-GPU interaction. gem5-GPU combines gem5 and GPGPU-Sim to model tightly integrated CPU-GPU systems (with memory access being routed through Ruby). Experiment with the simulation of both systems CPU and GPU with separate CPU and GPU physical address spaces or with coherent caches and a single virtual address space across the CPU and GPU. See Lowe-Power et al., “gem5-gpu: A Heterogeneous CPU-GPU Simulator."
• The use of open standards for tight integration of CPU and GPU is preferred, e.g., OpenCAPI rather than the proprietary NVLink.
2. Application-Oriented Projects
a. [POWER10 functional simulator]: Functional verification of a set of workloads in the POWER10 functional simulator (https://www.ibm.com/support/pages/node/6493433)
b. [POWER10 functional simulator]: Manual vectorization of a workload using altiVec extensions for PowerPC (https://www.ibm.com/docs/en/aix/7.2?topic=concepts-aix-vector-programming)
c. [POWER10 functional simulator + gem5]: A combination of 2.a and 1.d

FPGA Simulation/Emulation Projects for the POWER ISA
Microwatt supports simulation of bare-metal C programs for the POWER ISA. See https://github.com/antonblanchard/microwatt
1. Systems-Based Projects
a. Look at many of the aforementioned gem5 projects in the context of the Microwatt environment (https://github.com/antonblanchard/microwatt) but work on a smaller subset of workloads, for example, due to the additional overhead of having to configure an FPGA or an FPGA simulator.
b. [Microwatt + GHDL] GHDL (VHDLlow-level VerilogC) easier to run in but slower. Look at system aspects of configuration and evaluation of workloads.
c. [Microwatt + Verilator] Verilator (VerilogC++) faster but harder to run in. Look at system aspects of configuration and evaluation of workloads.
2. Application-Oriented Projects
a. [Microwatt + gem5]: Simulate a workload in Microwatt (https://github.com/antonblanchard/microwatt) and the same workload in gem5, vary the configurable parameters (e.g., cache size, associativity, replacement policy, branch prediction policy) and identify the best configuration for that workload in Microwatt and in gem5. Are the results consistent or wildly different? What are the implications of this?
b. [Microwatt on FPGA  This project requires access to an FPGA]: Synthesize Microwatt on an FPGA (https://github.com/antonblanchard/microwatt#synthesis-on-xilinx-fpgas-using-vivado) and evaluate the performance of a workload of your choice on the POWER ISA.
c. [Microwatt POWER  POWER CPU]: Compare and contrast the performance of one or more workloads on Microwatt running POWER ISA versus an actual POWERxy CPU, e.g., POWER8, POWER9, or POWER10. Look at total cycles, total execution time, and if infrastructure allows, power consumption and energy efficiency with respect to performance per watt.

Propose Your Own Project
1. Build on your answer from HW #4, Problem 3d, i.e., “(d) Based on the gem5-based problems assigned in this and previous homework assignments, write a detailed paragraph about extensions to this case study on the POWER memory hierarchy that could be pitched as potential (modest) project proposals.”
2. Build on your answer from HW #5, Problem 4d, i.e., “(d) Based on the gem5-based problems in this assignment, write a detailed paragraph about extensions to this case study and/or the case study from HW #4 on the POWER memory hierarchy that could be pitched as potential (modest) project proposals.”
3. Propose something else that is based on parallel computer architecture beyond SISD processing via instruction-level parallelism (ILP), e.g., SIMD via data-level parallelism (DLP) or MIMD via thread-level parallelism (TLP), which will be covered during the last month of the semester.
Loading…
Cancel
Save