Mutli-Cores Flashcards
What is a multi core processor?
processor with more than 1 processor incorporated into a single chip .
What ides does this use?
parallel computing idea, where each processor executes an instruction simultaneously with the goal of speeding up task completion
What type of processor is this especially useful for
GPU to render graphics
What is this good for on a browser?
Having multiple tabs open
Answer the question:
‘Define the term multicore processor’
Multicore processor is one consisting of multiple processors (CPUs or GPUs depending on function within machine) usually integrated within one chip. These are capable of parallel computing (simultaneous execution of instructions) and hence greater / more efficient performance.
What is concurrent processing?
Implementing round robin within the scheduling to make is appear that tasks are being executed simultaneously
What is parallel computing? - this is the same as parallel processing
requires multiple processors each executing a different instruction simultaneously with the goal of speeding uo computations
What is SIMD?
single instruction and multiple data
- approach where mutiple processors follow the same instruction but with different inputs. This is used within parallel processing with large sets needed to be manipulated under the same criteria.
What is MIMD?
mutiple instructions and multiple data
- approach where the processor carry out their own instruction and stream their data independently of other processors.