• Deutsch
Login

Open Access

  • Home
  • Search
  • Browse
  • Publish/report a document
  • Help

Refine

Has Fulltext

  • yes (9) (remove)

Author

  • Haas, Florian (5)
  • Amslinger, Rico (4)
  • Piatka, Christian (4)
  • Ungerer, Theo (4)
  • Weis, Sebastian (4)
  • Altmeyer, Sebastian (3)
  • Haas, Simon (2)
  • Schlesner, Matthias (2)
  • Alt, Florian (1)
  • Asada, Noboru (1)
+ more

Year of publication

  • 2022 (2)
  • 2020 (3)
  • 2019 (2)
  • 2018 (1)
  • 2002 (1)

Document Type

  • Article (5)
  • Part of a Book (1)
  • Conference Proceeding (1)
  • Doctoral Thesis (1)
  • Report (1)

Language

  • English (9)

Keywords

  • Cell Biology (1)
  • Fehlertoleranz (1)
  • General Biochemistry, Genetics and Molecular Biology (1)
  • General Chemistry (1)
  • General Physics and Astronomy (1)
  • Genetics (1)
  • Molecular Medicine (1)
  • Redundanz (1)
  • Transaktionaler Speicher (1)

Institute

  • Fakultät für Angewandte Informatik (9) (remove)

9 search hits

  • 1 to 9
  • 10
  • 20
  • 50
  • 100

Sort by

  • Year
  • Year
  • Title
  • Title
  • Author
  • Author
Globally altered epigenetic landscape and delayed osteogenic differentiation in H3.3-G34W-mutant giant cell tumor of bone (2020)
Lutsik, Pavlo ; Baude, Annika ; Mancarella, Daniela ; Öz, Simin ; Kühn, Alexander ; Toth, Reka ; Hey, Joschka ; Toprak, Umut H. ; Lim, Jinyeong ; Nguyen, Viet Ha ; Jiang, Chao ; Mayakonda, Anand ; Hartmann, Mark ; Rosemann, Felix ; Breuer, Kersten ; Vonficht, Dominik ; Grünschläger, Florian ; Lee, Suman ; Schuhmacher, Maren Kirstin ; Kusevic, Denis ; Jauch, Anna ; Weichenhan, Dieter ; Zustin, Jozef ; Schlesner, Matthias ; Haas, Simon ; Park, Joo Hyun ; Park, Yoon Jung ; Oppermann, Udo ; Jeltsch, Albert ; Haller, Florian ; Fellenberg, Jörg ; Lindroth, Anders M. ; Plass, Christoph
Inflammatory exposure drives long-lived impairment of hematopoietic stem cell self-renewal activity and accelerated aging (2022)
Bogeska, Ruzhica ; Mikecin, Ana-Matea ; Kaschutnig, Paul ; Fawaz, Malak ; Büchler-Schäff, Marleen ; Le, Duy ; Ganuza, Miguel ; Vollmer, Angelika ; Paffenholz, Stella V. ; Asada, Noboru ; Rodriguez-Correa, Esther ; Frauhammer, Felix ; Buettner, Florian ; Ball, Melanie ; Knoch, Julia ; Stäble, Sina ; Walter, Dagmar ; Petri, Amelie ; Carreño-Gonzalez, Martha J. ; Wagner, Vinona ; Brors, Benedikt ; Haas, Simon ; Lipka, Daniel B. ; Essers, Marieke A.G. ; Weru, Vivienn ; Holland-Letz, Tim ; Mallm, Jan-Philipp ; Rippe, Karsten ; Krämer, Stephan ; Schlesner, Matthias ; McKinney Freeman, Shannon ; Florian, Maria Carolina ; King, Katherine Y. ; Frenette, Paul S. ; Rieger, Michael A. ; Milsom, Michael D.
Redundant execution on heterogeneous multi-cores utilizing transactional memory (2018)
Amslinger, Rico ; Weis, Sebastian ; Piatka, Christian ; Haas, Florian ; Ungerer, Theo
Fault-tolerant Execution of Parallel Applications on x86 Multi-core Processors with Hardware Transactional Memory (2019)
Haas, Florian
To satisfy the enduring demand for increasing computational power, the processor manufacturers try to raise the performance per Watt of a chip, which can be achieved by minimizing the structure sizes of electronic circuits. However, the technological limits are about to be reached, and the further reduction of the supply voltages and rising frequencies will lead to increased error rates due to transient faults, which result from the miniaturization of transistors, and from the growing number of transistors on a chip. To mitigate such errors, techniques from dependable server systems and safety-critical embedded systems become attractive in commodity systems as well. However, the typically used cycle-by-cycle lockstep execution of a redundant processor is hardly feasible on a complex out-of-order CPU. Approaches that enable a loose coupling have been proposed, integrated in hardware as well as software-only approaches. Software mechanisms allow to run specific applications redundantly to detect errors on a COTS (commercial-off-the-shelf) processor without hardware modifications. In recent years, transactional memory gained interest in the research of fault-tolerant systems. Its property of isolation and the integrated checkpointing mechanism to guarantee atomicity spawned multiple approaches to utilize transactional memory for fault tolerance. With the availability of first hardware implementations, for example TSX in the more expensive processors of the Intel x86 Core family, software mechanisms that rely on hardware transactional for checkpointing became feasible. This thesis investigates a fail-operational execution with transactional memory on a COTS Intel CPU, based on loosely-coupled redundant execution. An instrumentation mechanism, which was developed as an optimization pass for the LLVM compilation toolchain, and a support library for POSIX compatible systems provide the functionality for error detection and recovery. The feasibility and the effectiveness of the approach were evaluated with benchmarks of the SPEC2017 benchmark suite. Results show that a fault-tolerant redundant execution can be achieved on an x86 CPU, and that specific enhancements to the hardware could further improve the overall performance. Multi-threaded applications require further consideration for redundant execution, since indeterminism can occur between redundant pairs of threads, due to diverging synchronization, for example on mutual exclusion. An interface to the Pthread synchronization functions is described, as well as an error recovery mechanism, to enable the redundant and fail-operational execution of multi-threaded applications. This was evaluated by means of benchmarks of the PARSEC suite to prove that redundant multi-threading is feasible on a COTS CPU. The impact of the additional layer on performance and speedup is shown to be minimal.
Hardware multiversioning for fail-operational multithreaded applications (2020)
Amslinger, Rico ; Piatka, Christian ; Haas, Florian ; Weis, Sebastian ; Ungerer, Theo ; Altmeyer, Sebastian
Modern safety-critical embedded applications like autonomous driving need to be fail-operational. At the same time, high performance and low power consumption are demanded. A common way to achieve this is the use of heterogeneous multi-cores. When applied to such systems, prevalent fault tolerance mechanisms suffer from some disadvantages: Some (e.g. triple modular redundancy) require a substantial amount of duplication, resulting in high hardware costs and power consumption. Others (e.g. lockstep) require supplementary checkpointing mechanisms to recover from errors. Further approaches (e.g. software-based process-level redundancy) cannot handle the indeterminism introduced by multithreaded execution. This paper presents a novel approach for fail-operational systems using hardware transactional memory, which can also be used for embedded systems running heterogeneous multi-cores. Each thread is automatically split into transactions, which then execute redundantly. The hardware transactional memory is extended to support multiple versions, which allows the reproduction of atomic operations and recovery in case of an error. In our FPGA-based evaluation, we executed the PARSEC benchmark suite with fault tolerance on 12 cores.
BrainShare: a glimpse of social interaction for locked-in syndrome patients (2019)
Faltaous, Sarah ; Haas, Gabriel ; Barrios, Liliana ; Seiderer, Andreas ; Rauh, Sebastian Felix ; Chae, Han Joo ; Schneegass, Stefan ; Alt, Florian
On the use of prosody in automatic dialogue understanding (2002)
Nöth, Elmar ; Batliner, Anton ; Warnke, Volker ; Haas, Jürgen ; Boros, Manuela ; Buckow, Jan ; Huber, Richard ; Gallwitz, Florian ; Nutt, Matthias ; Niemann, Heinrich
Investigating transactional memory for high performance embedded systems (2020)
Piatka, Christian ; Amslinger, Rico ; Haas, Florian ; Weis, Sebastian ; Altmeyer, Sebastian ; Ungerer, Theo
Multiversioning hardware transactional memory for fail-operational multithreaded applications (2022)
Amslinger, Rico ; Piatka, Christian ; Haas, Florian ; Weis, Sebastian ; Ungerer, Theo ; Altmeyer, Sebastian
Modern safety-critical embedded applications like autonomous driving need to be fail-operational, while high performance and low power consumption are demanded simultaneously. The prevalent fault tolerance mechanisms suffer from disadvantages: Some (e.g. triple modular redundancy) require a substantial amount of duplication, resulting in high hardware costs and power consumption. Others, like lockstep, require supplementary checkpointing mechanisms to recover from errors. Further approaches (e.g. software-based process-level redundancy) cannot handle the indeterminism caused by multithreaded execution. This paper presents a novel approach for fail-operational systems using hardware transactional memory for embedded systems. The hardware transactional memory is extended to support multiple versions, enabling redundant atomic operations and recovery in case of an error. In our FPGA-based evaluation, we executed the PARSEC benchmark suite with fault tolerance on 12 cores. The evaluation shows that multiversioning can successfully recover from all transient errors with an overhead comparable to fault tolerance mechanisms without recovery.
  • 1 to 9

OPUS4 Logo

  • Contact
  • Imprint
  • Sitelinks