-
Notifications
You must be signed in to change notification settings - Fork 46
/
metadata.json
231 lines (231 loc) · 13.8 KB
/
metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"metadata": [
{
"title": "Introduction to Computer Architecture Education Kit",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "EdKit",
"format": ["ppt", "doc", "zip code files"],
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Gain an understanding of the fundamental topics and concepts of computer architecture including the application of these with modern Arm processors",
"language": ["Verilog", "Assembly"],
"source":"",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": ""
},
{
"title": "Introduction to Computer Architecture, Module 1",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Introduces what computer architecture is and why it is important. It will also give an overview of the computer architecture arena and its design goals. We will also look at some historical information of computer architecture performance over the years. Finally, we will look at an overview of future trends of computer architecture, such as multicore processors, SoCs, and beyond.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module01_IntroToComputerArchitecture/Lecture01_IntroToComputerArchitecture.pptx"
},
{
"title": "Fundamentals of Computer Design, Module 2",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "This module will step through the design of a simple processor. The aim is to outline their basic operation, understand how the basic fetch-execute cycle is implemented and how instructions are encoded in memory. We’ll then explore some fundamental computer design principles and introduce the concept of an Instruction Set Architecture (ISA).",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module02_FundamentalsOfComputerDesign/Lecture02_FundamentalsOfComputerDesign.pptx"
},
{
"title": "Pipelining, Module 3",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "In this module, we will learn in further detail about pipelining and how it can be implemented. We will also discuss about the different types of pipeline hazards and various data dependencies and how we can deal with them. Finally, we will learn about the relationship between pipelining and performance.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module03_Pipelining/Lecture03_Pipelining.pptx"
},
{
"title": "Branches and Limits to Pipelining, Module 4",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "In this module, we will first learn about the various methods of handling branches and how we can minimize the impact of branches (control hazards). We will also learn about handling exceptions. Finally, we will conclude this module with a discussion about the limitations of pipelining.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module04_BranchesAndLimitsToPipelining/Lecture04_BranchesAndLimitsToPipelining.pptx"
},
{
"title": "Exploiting Instruction Level Parallelism, Module 5",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Overview of the Arm architecture and processor families. Diving into the M4 subfamily that is the most comprehensive group of mobile (M-type) processors.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module05_ExploitingInstructionLevelParallelism/Lecture05_ExploitingInstructionLevelParallelism.pptx"
},
{
"title": "Memory, Module 6",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Covers microcontroller interrupts and exceptions handling, often with a view to how these enable low power operation.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module06_Memory/Lecture06_Memory.pptx"
},
{
"title": "Caches, Module 7",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Overview of the Mbed Platform and Cortex Microcontroller Software Interface Standard (CMSIS) that enables rapid IoT development.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module07_Caches/Lecture07_Caches.pptx"
},
{
"title": "Multicore, Module 8",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "doc",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "How to create a new Mbed project, import code example, compile, and execute applications for embedded devices.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module08_Multicore/Lecture08_Multicore.pptx"
},
{
"title": "Multithreading, Module 9",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Introduces the Bluetooth technology and examines the low energy version of this wireless protocol. Understand BLE profiles and take a look at the most recent features introduced with the most recent revisions of the specification. Finally, introducing ZigBee - another connectivity option for low-power short-range communications.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module09_Multithreading/Lecture09_Multithreading.pptx"
},
{
"title": "Vector SIMD GPUs, Module 10",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "pptx",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Learn how to configure and use the General Purpose Input/Output (GPIO) capability of a development board, at the register level without the use of an Application Programming Interface (API).",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module10_VectorSIMDGPUs/Lecture10_VectorSIMDGPUs.pptx"
},
{
"title": "SoC Case Study, Module 11",
"subject": ["arm", "computer-engineering", "armv8", "electrical-engineering", "cortex-a", "cpu-architecture", "computer-architectures", "hardware-design"],
"type": "Lecture",
"format": "ppt",
"creator": ["Robert Mullins", "Timothy Jones", "Francisca Tan"],
"publisher": "Arm Education",
"created": "1/07/2020",
"description": "Look at alternate connectivity options relevant to IoT, focusing on wireless local area networking and low-power wide area networking technologies.",
"language": ["Verilog", "Assembly"],
"source": "",
"relation": "",
"audience": ["Learner", "Developer", "Undergraduate", "Student", "Lecturer", "Academic", "Professor"],
"contributor": "",
"date": "",
"license": "EULA",
"identifier": "",
"link": "Computer-Architecture-Lectures-Armv8-A/contents/Module11_SoCCaseStudy/Lecture11_SoCCaseStudy.pptx"
}
]
}