AP CSP 3.1: Computing Systems

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

Serial vs Parallel Computing, Processors, Built-In Functions, The Cloud, Documentation, Distributed Computing

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Heterogenous Processor

A processor that combines different kinds of processors into one chip.

2
New cards

What is an APU composed of?

A CPU and GPU (heterogenous processor)

3
New cards

What type of workloads do CPU’s deal with?

Serial Workloads

4
New cards

What type of workloads do GPU’s deal with?

Parallel workloads

5
New cards

What does higher core count mean?

More efficiency in calculations

6
New cards

Parallelization

Splitting a program’s workload across multiple processing cores, so a computer can process different workloads simultaneously.

7
New cards

Sequential Computing

The standard programming model, where the computer executes each operation one at a time.

8
New cards

How to calculate sequential computing

(#of seconds * #of calls per operation) and add them all up.

9
New cards

Speedup

sequential time/parallel time

10
New cards

.split() function

Allows for seperate words to be printed or returned from a sentence

11
New cards

enumerate() function

Accesses the value AND index of each item in a list.

12
New cards

Computing Cloud

A dense cluster of computers

13
New cards

Latency

The time it takes for a data packet to take a round trip between the sender, receiver, and sender again.

14
New cards

Documentation

Context of the code at the start of the program.

15
New cards

Parallel Computing

ONE computer with MULTIPLE processors

16
New cards

Distributed Computing

MULTIPLE computers with MULTIPLE processors.

17
New cards

What are parallel computing solutions composed of?

Parallel + Sequential portion

18
New cards

The efficiency of a parallel solution is limited by what?

its sequential portion.