An Entity of Type: ChangeOfState100199130, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

Software is said to exhibit scalable parallelism if it can make use of additional processors to solve larger problems,i.e. this term refers to software for which Gustafson's law holds.Consider a program whose execution time is dominated by one or more loops,each of that updates every element of an array ---for example, the following finite difference heat equation stencil calculation: for t := 0 to T do for i := 1 to N-1 do new(i) := (A(i-1) + A(i) + A(i) + A(i+1)) * .25 // explicit forward-difference with R = 0.25 end for i := 1 to N-1 do A(i) := new(i) endend

Property Value
dbo:abstract
  • Software is said to exhibit scalable parallelism if it can make use of additional processors to solve larger problems,i.e. this term refers to software for which Gustafson's law holds.Consider a program whose execution time is dominated by one or more loops,each of that updates every element of an array ---for example, the following finite difference heat equation stencil calculation: for t := 0 to T do for i := 1 to N-1 do new(i) := (A(i-1) + A(i) + A(i) + A(i+1)) * .25 // explicit forward-difference with R = 0.25 end for i := 1 to N-1 do A(i) := new(i) endend In the above code, we can execute all iterations of each "i" loop concurrently,i.e., turn each into a parallel loop.In such cases,it is often possible to make effective use of twice as many processors for a problem of array size 2Nas for a problem of array size N.As in this example, scalable parallelism is typically a form of data parallelism.This form of parallelism is often the target of automatic parallelization of loops. Distributed computing systems and non-uniform memory access architecturesare typically the most easily scaled to large numbers of processors,and thus would seem a natural target for software that exhibits scalable parallelism.However, applications with scalable parallelism may not have parallelism ofsufficiently coarse grainto run effectively on such systems (unless the software is embarrassingly parallel).In our example above, the second "i" loop is embarrassingly parallel,but in the first loop each iteration requires results produced in several prior iterations.Thus, for the first loop, parallelization may involve extensive communication or synchronization among processors,and thus only result in a net speedup if such interactions have very low overhead,or if the code can be transformed to resolve this issue (i.e., by combined scalable locality/scalable parallelism optimization). (en)
  • Масштабований паралелізм — це використовування додаткових процесів для вирішення великих проблем. Програмне забезпечення демонструє масштабований паралелізм, якщо воно може використовувати додаткові процесори для вирішення великих проблем, тобто цей термін відноситься до програмного забезпечення, для якого дійсний закон Густафсона. Розглянемо програму, в часі виконання якої домінує один або більше циклів, кожен з який оновлює кожен елемент масиву. Наприклад, наступний розрахунок методом скінченних різниць рівняння теплопровідності трафарету: for t := 0 to T do for i := 1 to N-1 do new(i) := (A(i-1) + A(i) + A(i) + A(i+1)) * .25 // explicit forward-difference with R = 0.25 end for i := 1 to N-1 do A(i) := new(i) endend У наведеному вище коді, ми можемо виконати всі ітерації кожної «i» циклу одночасно, тобто перетворити в паралельний цикл. У таких випадках часто можна ефективно використовувати в два рази більше процесорів, як і для проблеми з розміром масиву 2N, так і для проблеми з розміром масиву N. В цьому прикладі, масштабований паралелізм зазвичай являє собою вид паралелізму даних. Ця форма паралельності часто є об'єктом автоматичного розпаралелювання циклів. (uk)
dbo:wikiPageExternalLink
dbo:wikiPageID
  • 23048148 (xsd:integer)
dbo:wikiPageLength
  • 3314 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 939094044 (xsd:integer)
dbo:wikiPageWikiLink
dbp:wikiPageUsesTemplate
dcterms:subject
rdf:type
rdfs:comment
  • Software is said to exhibit scalable parallelism if it can make use of additional processors to solve larger problems,i.e. this term refers to software for which Gustafson's law holds.Consider a program whose execution time is dominated by one or more loops,each of that updates every element of an array ---for example, the following finite difference heat equation stencil calculation: for t := 0 to T do for i := 1 to N-1 do new(i) := (A(i-1) + A(i) + A(i) + A(i+1)) * .25 // explicit forward-difference with R = 0.25 end for i := 1 to N-1 do A(i) := new(i) endend (en)
  • Масштабований паралелізм — це використовування додаткових процесів для вирішення великих проблем. Програмне забезпечення демонструє масштабований паралелізм, якщо воно може використовувати додаткові процесори для вирішення великих проблем, тобто цей термін відноситься до програмного забезпечення, для якого дійсний закон Густафсона. Розглянемо програму, в часі виконання якої домінує один або більше циклів, кожен з який оновлює кожен елемент масиву. Наприклад, наступний розрахунок методом скінченних різниць рівняння теплопровідності трафарету: (uk)
rdfs:label
  • Scalable parallelism (en)
  • Масштабований паралелізм (uk)
owl:sameAs
prov:wasDerivedFrom
foaf:isPrimaryTopicOf
is dbo:wikiPageRedirects of
is dbo:wikiPageWikiLink of
is foaf:primaryTopic of
Powered by OpenLink Virtuoso    This material is Open Knowledge     W3C Semantic Web Technology     This material is Open Knowledge    Valid XHTML + RDFa
This content was extracted from Wikipedia and is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License