99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CS257、c/c++編程設計代做

時間:2024-02-29  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CS257 Advanced Computer Architecture
Coursework Assignment
Term 2, 2023/24
Contents
1 Introduction 2
2 Submission 2
3 Introduction to ACACGS 3
4 Compiling and Running the Code 4
4.1 Visualisation Generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
5 Hardware Details 6
6 How will my code be tested for performance? 7
7 Rules 7
8 Where do I start? 7
9 Instructions for Submission 7
10 Support 7
1
1 Introduction
The purpose of this coursework is to give you some hands-on experience in code optimisation. By the time you read
this, you will have encountered a variety of code optimisation techniques including loop unrolling and vectorisation.
2 Submission
Your submission will consist of two parts:
1. Optimised Code (60%)
A piece of C code based on the initial implementation provided. This C code will be assessed with respect
to your selection and understanding of optimisations, functional correctness, i.e., producing the right answer,
and execution speed.
2. Written Report (40%)
A report (4 pages maximum, excluding references) detailing your design and implementation decisions. Your
report will be evaluated with respect to your understanding of code optimisation techniques and the optimisations you attempted. This means that your report should explain:
(a) which optimisations you did and did not use;
(b) why your chosen optimisations improve performance; and
(c) how your chosen optimisations affect floating-point correctness.
Given that you may apply many different optimisations, a sensible approach is to build your solution incrementally, saving each partial solution and documenting the impact of each optimisation you make. This means that it
is in your interest to attempt as many different optimisations or combinations of optimisations as you can.
You may discuss optimisation techniques with others but you are not allowed to collaborate on solutions to this
assignment. Please remember that the University takes all forms of plagiarism seriously.
2
3 Introduction to ACACGS
ACSCGS is a conjugate gradient proxy application for a 3D mesh. The simulation will execute for either a fixed
number of timesteps or alternatively until the residual value falls below a given threshold. This is done for a given
mesh size, which is passed in at runtime through command-line arguments.
In this proxy application, a force is applied to each edge boundary of the cuboid, which is then propagated
throughout the mesh. As each time step passes, the force is dissipated within the mesh, until the amount of residual
is significantly small that the simulation stops (as there are no more calculations to perform), or a set number of
time steps have passed.
In addition to providing numeric solutions, the code can also generate visuals which depict the pressure within
the mesh throughout the simulation run. Creating the visualisations relies on two optional packages, Silo and VisIt,
which are available on the DCS systems.
Figure 1: Pressure Matrix Visualisation
3
4 Compiling and Running the Code
The code includes a Makefile file to build the program. You can compile all of the code using the command make.
You should not modify the Makefile file, but examining it may prove helpful in some situations.
While the DCS machines do include a version of gcc, it is preferable to use a more recent version. On the DCS
systems, you can make version 9 the default by using the module load gcc9 command. Once this is loaded you
can simply type make to build the code, which will create an executable named acacgs in the directory. To clean
up the directory, you can run make clean.
To run the code, you need to provide the three dimensions for the mesh as three parameters to the executable.
For example to execute the provided code on a small 10x10x10 mesh you would enter ./acacgs 10 10 10. On my
system the output for the code is below. This information is also stored in a file, which is named after the wallclock
date and time of when the program was first executed (for example, 2023_01_26_12_00_00.txt).
===== Final Statistics =====
Executable name: ./acacgs
Dimensions: 10 10 10
Number of iterations: 149
Final residual: 2.226719e-92
=== Time ==
Total: 1.126600e-02 seconds
ddot Kernel: 8.3**000e-04 seconds
waxpby Kernel: 1.087000e-03 seconds
sparsemv Kernel: 9.123000e-03 seconds
=== FLOP ==
Total: 9.536000e+06 floating point operations
ddot Kernel: 5.960000e+05 floating point operations
waxpby Kernel: 8.940000e+05 floating point operations
sparsemv Kernel: 8.046000e+06 floating point operations
=== MFLOP/s ==
Total: 8.464**e+02 MFLOP/s
ddot Kernel: 7.103695e+02 MFLOP/s
waxpby Kernel: 8.224**1e+02 MFLOP/s
sparsemv Kernel: 8.819467e+02 MFLOP/s
Difference between computed and exact = 1.110223e-15
You will find more detailed instructions to build the code in the README.md file, including flags to turn on
verbose mode, which will output details for each timestep in the simulation, and flags for enabling visualisation.
4.1 Visualisation Generation
To enable visualisation outputs, you must build your code using make SILO=1. This will then compile your code
in a way which produces files suitable for visualisation in VisIt. If you are working remotely and want to visualise
the coursework, it will be quicker and easier for you to copy the files to your local machine, then utilise VisIt on
the local machine to visualise the cuboid. Before you make the program, make sure you load the SILO module
(module load cs257-silo).
When the program is ran with visualisations, each timestep will produce a SILO file within a directory named
after the wallclock date and time (for example: 2023_01_26_12_00_00). In this directory will be a collection of
.silo files, each named outputXXXX.silo, where XXXX represents the timestep it relates to.
Once the program has finished, these can be utilised in Visit. To do so, load the VisIt module (module load
cs257-visit) and open VisIt using the command visit. From here, you will get 2 windows. The smaller, skinner
one is the control window and is used to manage everything that will be displayed. The larger window is the display
window. In the control window, select Open, and navigate to the directory with the SILO files. You should then
be able to select these SILO files.
4
Now that the SILO files have been loaded, we can now draw some given variables. To do this, click on the Add
and select a mode and a variable that should be viewed. One of the nicest ones to use is Volume and either x_nodal
or p_nodal. When you have finished adding elements, click on Draw. This will generate an image in the display
window, that can be dragged around so that the cuboid can be viewed from different angles. The control window
has a play button, which will run through each timestep.
Visualisations are nice to have, but for performance purposes we turn them off as they write a significant amount
of data to disk.
Table 1: Visualisation Data File Sizes
x y z Cells Approximate Data Size
10 10 10 1000 4MB
25 25 25 15,625 39MB
50 50 50 125,000 301MB
100 100 100 1,000,000 2.4GB
200 200 200 8,000,000 19.3GB
There is the potential to go significantly over your DCS disk quota with large meshes. I recommend that you
do not exceed 30x30x30 for producing visualisations on the DCS machines. If you are developing your solution on
your personal machine then you may wish to produce larger visualisations.
5
5 Hardware Details
On a Linux system, you can read the processor information using the command cat /proc/cpuinfo or lscpu.
This will provide full details on the CPU in the machine, including the CPU model, number of cores, the clock
frequency and supported extensions. I strongly recommend taking a look at this on your development machine.
For the purposes of assessment, your code will be run on a DCS machine with 4 cores. The output from lscpu
can be seen below:
Architecture: x86_64
CPU op-mode(s): **-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i5-7500 CPU @ 3.40GHz
Stepping: 9
CPU MHz: 3400.000
CPU max MHz: 3800.0000
CPU min MHz: 800.0000
BogoMIPS: 6816.00
Virtualization: VT-x
L1d cache: **K
L1i cache: **K
L2 cache: 256K
L3 cache: 6144K
NUMA node0 CPU(s): 0-3
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36
clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm
constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid
aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3
sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes
xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single pti ssbd
ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1
avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec
xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear
flush_l1d arch_capabilities
Machines matching this specification are available in the cs257 queue of the Batch Compute System in the
Department (referred to as kudu in the labs). You will learn how to use this system during the lab sessions, so
there will be time to get used to it.
6
6 How will my code be tested for performance?
Your submission will be tested on a range of input sizes to evaluate how robust your performance improvements
are. It is recommended that you try testing your solution on inputs that are not cubes to see if there are any
weaknesses in your optimisation strategies. The 7-pt stencil option will not be used for testing your code.
Your code will be executed five times for each problem size on the target hardware. The highest and lowest
runtimes will be discarded, and the mean of the three remaining values will be taken as your runtime for that
problem size.
7 Rules
Your submitted solution must:
• Compile on the DCS workstations.
Your submitted solution must not:
• Alter the Makefile or add or edit any compiler flags;
• Use instruction sets not supported by the DCS machines;
• Require additional hardware e.g., GPUs;
• Add relaxed math options to the compile line, e.g., -ffast-math. Note: Manual use of approximate math
functions is acceptable.
8 Where do I start?
This can seem like a daunting project, but we can break it down into a number of steps.
1. Compile and run the code as provided. This is a quick easy check to make sure your environment is setup
correctly.
2. Read the code. Start in main.c and follow it through. The functions are well documented with Doxygen
comments. Don’t panic - you are not expected to understand the physics in the code.
3. Measure the runtime of the code for reference purposes.
4. Figure our where the most intensive sections of code are.
5. Develop a small optimisation.
6. Run the code and review the impact of your changes.
7. Repeat steps 5 and 6 until you have exhausted your performance ideas.
9 Instructions for Submission
Your solution should be submitted using Tabula. Please ensure that your code works on DCS machines prior to
submission.
Submission Deadline: Wednesday 20th March 2024 @ 12 Noon
Files Required: A single file named coursework.zip which should contain all of your code at the top-level (i.e.
no subdirectories) and the report file as a PDF. All files should be submitted through Tabula.
10 Support
Support can be found from one of your Teaching Assistants: Stephen Xu (stephen.xu@warwick.ac.uk), James
Macer-Wright james.macer-wright@warwick.ac.uk or the module organiser via email.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:莆田鞋在哪個app買(莆田鞋十大良心商家推薦)
  • 下一篇:代寫CS-256、代做Java編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                国产电影一区在线| 欧美日韩国产精品成人| 在线观看一区二区精品视频| 一区视频在线播放| av在线播放不卡| 亚洲一区二区精品3399| 欧美另类高清zo欧美| 精品一区二区三区久久| 久久久久久麻豆| 波多野结衣中文字幕一区| 亚洲最大的成人av| 欧美www视频| 99久久精品国产一区| 日本欧美在线看| 国产精品欧美精品| 欧美日韩免费高清一区色橹橹| 麻豆精品一二三| 亚洲欧美日韩国产手机在线| 日韩一区二区三| 91视频91自| 秋霞午夜鲁丝一区二区老狼| 国产人久久人人人人爽| 欧美性猛交xxxx乱大交退制版 | 另类小说综合欧美亚洲| 国产欧美一区二区三区鸳鸯浴| 成人免费观看视频| 香蕉成人啪国产精品视频综合网| 久久伊人中文字幕| 制服丝袜成人动漫| 色综合久久综合网| 一区二区三区不卡在线观看| 制服丝袜亚洲精品中文字幕| 97se亚洲国产综合在线| 久久国产婷婷国产香蕉| 亚洲色图欧美偷拍| 欧美mv和日韩mv的网站| 91久久免费观看| 国产成a人亚洲精品| 免费在线成人网| 亚洲精品日韩一| 99久久久久免费精品国产| 国产精品一卡二卡在线观看| 亚洲国产精品欧美一二99| 国产精品成人免费| 久久这里只有精品6| 91精品国产高清一区二区三区| av在线不卡电影| 国产99久久久久| 国产一区欧美二区| 久久超级碰视频| 青青草91视频| 日韩精品国产精品| 亚洲一区视频在线| 亚洲黄色片在线观看| 国产精品成人午夜| 国产精品福利一区二区三区| 中文字幕欧美国产| 欧美国产精品中文字幕| 国产日韩欧美综合在线| 久久精品视频一区二区三区| wwwwww.欧美系列| 精品精品国产高清一毛片一天堂| 欧美一级精品在线| 欧美不卡一区二区三区| 精品国产乱码久久久久久免费 | 一区免费观看视频| 国产精品欧美久久久久一区二区| 国产日韩欧美激情| 最新国产成人在线观看| 国产日韩欧美麻豆| 亚洲理论在线观看| 天天色天天爱天天射综合| 日本欧美大码aⅴ在线播放| 美女在线视频一区| 国产东北露脸精品视频| 播五月开心婷婷综合| 一本色道久久综合亚洲aⅴ蜜桃 | 97se亚洲国产综合在线| 欧洲人成人精品| 日韩欧美中文字幕制服| 国产精品欧美久久久久无广告| 亚洲天堂2014| 亚洲高清三级视频| 紧缚奴在线一区二区三区| 国产精品一区二区在线播放| 成人app网站| 欧美日本国产视频| 国产午夜三级一区二区三| 亚洲乱码国产乱码精品精98午夜| 日韩专区欧美专区| 精品一区二区三区免费视频| 国产99久久久国产精品免费看 | 亚洲国产精品精华液2区45| 亚洲色图在线视频| 日韩精品午夜视频| 成人午夜激情片| 在线观看91av| 欧美三级午夜理伦三级中视频| 久久午夜国产精品| 图片区日韩欧美亚洲| 国产成人三级在线观看| 欧美日韩成人在线| 综合久久给合久久狠狠狠97色 | 亚洲午夜电影在线观看| 国产美女视频91| 欧洲亚洲精品在线| 国产精品久久久久久久久免费相片| 偷拍与自拍一区| 91一区一区三区| 国产亚洲欧美激情| 激情图片小说一区| 91麻豆精品国产| 亚洲综合无码一区二区| 成年人国产精品| 久久久久国产精品厨房| 奇米在线7777在线精品| 色先锋aa成人| 亚洲欧洲国产日韩| 成人中文字幕电影| 久久综合九色综合欧美98 | 丁香亚洲综合激情啪啪综合| 日韩西西人体444www| 亚洲成a人片在线观看中文| 99久久精品国产麻豆演员表| 久久久久久久免费视频了| 男人操女人的视频在线观看欧美| 欧美三级电影网站| 亚洲va国产va欧美va观看| 欧美视频在线一区二区三区| 自拍偷在线精品自拍偷无码专区| 国产电影精品久久禁18| 国产视频一区在线播放| 国产成人av福利| 亚洲国产精品av| 成人av电影观看| 伊人婷婷欧美激情| 在线精品视频小说1| 亚洲男人天堂一区| 在线免费视频一区二区| 亚洲免费色视频| 欧美日韩三级视频| 麻豆一区二区99久久久久| 日韩你懂的在线观看| 国内精品视频一区二区三区八戒| 精品国精品国产尤物美女| 国产精品主播直播| 中文字幕一区二区三区av| av电影天堂一区二区在线| 亚洲一区视频在线| 日韩欧美国产精品一区| 国产精品自拍网站| 亚洲欧美区自拍先锋| 欧美剧情电影在线观看完整版免费励志电影| 亚洲电影在线播放| 欧美v亚洲v综合ⅴ国产v| 亚洲欧洲另类国产综合| 日韩一区二区在线看片| 大陆成人av片| 中文字幕亚洲一区二区va在线| 国产麻豆91精品| 亚洲在线视频网站| 26uuu色噜噜精品一区二区| 成人午夜在线播放| 日韩中文字幕91| 国产农村妇女精品| 欧美日韩一区精品| 国产一区二区成人久久免费影院| 国产精品灌醉下药二区| 91麻豆精品国产自产在线观看一区| 国产毛片精品视频| 亚洲最新视频在线观看| 精品少妇一区二区三区| 欧美综合久久久| 成人亚洲一区二区一| 日韩av在线免费观看不卡| 国产精品乱码一区二三区小蝌蚪| 91精品欧美一区二区三区综合在 | 久久一二三国产| 色综合av在线| 国产成人av电影| 欧美aa在线视频| 一区二区免费在线| 国产校园另类小说区| 欧美一区二区三区视频| 日本久久电影网| 国产精品18久久久久| 丝袜脚交一区二区| 亚洲女爱视频在线| 中文字幕欧美区| 久久免费美女视频| 日韩三级视频在线看| 欧美日韩视频第一区| 91视频一区二区三区| jlzzjlzz欧美大全| 国产精一品亚洲二区在线视频| 天天操天天干天天综合网| 亚洲免费观看高清完整版在线观看熊 | 一区二区三区国产| 91麻豆免费看| 成人天堂资源www在线|