You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.1 KiB

BEGRIFFLICHKEITEN
La-Place-Operator: Summe der 2. Partiellen Ableitungen
La-Place-Faltung: Approximation des La-Place-Operators (2D)
Aleatorischer und Epistemischer Zufall
Scatter, Gather, GatherAll, Broadcast, Reduction
Stellenwertsysteme (Binär, Dezimal, Oktal, Hexadezimal)
Festkommazahlen, Fließkommazahlen (Vorzeichen, Exponent bzw. Charakterstik, Mantisse)
Kondition: || f(x) - gf(gx) || <= || f(x) - f(gx) || + || f(x) - gf(gx) ||
Erster teil der Ungleichung muss akzeptiert werden. Wenn gf = f (also das Programm ungestört), dann:
Absolute Konditionszahl: || f(gx) - f(x) || <= k * || gx - x || (wobei k die Konditionszahl)
Relative Konditionszahl: || f(gx) - f(x) || / || f(x) ||<= rk * || gx - x || / || x || (wobei rk die relative Konditionszahl)
Je kleiner die Konditionszahl, desto besser ist ein Problem gestellt
SISD: Single-Instruction-Single-Date vs. SIMD: Single-Instruction-Multiple-Data
Instruction-Fetch, Instruction-Decode, Instruction-Execution, Memory, Storage-Write-Back
Kompilierung: Preprocessor -> Compiler zu Assembler File -> Assembler zu Binärdatei (Objekt Datei) -> Linker zu Executable (Bibliotheken einfügen)