Emphasizing Distributed Systems

Emphasizing Distributed Systems
Author:
Publisher: Academic Press
Total Pages: 553
Release: 2000-06-29
Genre: Computers
ISBN: 0080544800

As the computer industry moves into the 21st century, the long-running Advances in Computers is ready to tackle the challenges of the new century with insightful articles on new technology, just as it has since 1960 in chronicling the advances in computer technology from the last century. As the longest-running continuing series on computers, Advances in Computers presents those technologies that will affect the industry in the years to come. In this volume, the 53rd in the series, we present 8 relevant topics. The first three represent a common theme on distributed computing systems -using more than one processor to allow for parallel execution, and hence completion of a complex computing task in a minimal amount of time. The other 5 chapters describe other relevant advances from the late 1990s with an emphasis on software development, topics of vital importance to developers today- process improvement, measurement and legal liabilities. Longest running series on computers Contains eight insightful chapters on new technology Gives comprehensive treatment of distributed systems Shows how to evaluate measurements Details how to evaluate software process improvement models Examines how to expand e-commerce on the Web Discusses legal liabilities in developing software—a must-read for developers

Distributed Shared Memory

Distributed Shared Memory
Author: Jelica Protic
Publisher: Wiley-IEEE Computer Society Press
Total Pages: 384
Release: 1998
Genre: Computers
ISBN:

Computer Systems Organization -- Parallel architecture.

Shared-Memory Synchronization

Shared-Memory Synchronization
Author: Michael Lee Scott
Publisher: Springer Nature
Total Pages: 252
Release: 2024
Genre: Computer architecture
ISBN: 3031386841

Zusammenfassung: This book offers a comprehensive survey of shared-memory synchronization, with an emphasis on "systems-level" issues. It includes sufficient coverage of architectural details to understand correctness and performance on modern multicore machines, and sufficient coverage of higher-level issues to understand how synchronization is embedded in modern programming languages. The primary intended audience for this book is "systems programmers"--the authors of operating systems, library packages, language run-time systems, concurrent data structures, and server and utility programs. Much of the discussion should also be of interest to application programmers who want to make good use of the synchronization mechanisms available to them, and to computer architects who want to understand the ramifications of their design decisions on systems-level code

Tools and Environments for Parallel and Distributed Computing

Tools and Environments for Parallel and Distributed Computing
Author: Salim Hariri
Publisher: John Wiley & Sons
Total Pages: 228
Release: 2004-03-01
Genre: Computers
ISBN: 0471474843

Zugänge zur parallelen Rechentechnik: Dieses Buch behandelt ein breites Spektrum verschiedener Ansätze! Sie erhalten einen aufschlussreichen Überblick über die leistungsfähigsten derzeit gebräuchlichen Tools. Fallstudien stellen besonders erfolgreiche Implementationen (u. a. Stanford, MIT) vor. Im Vordergrund der Diskussion steht die Performance der Lösungen. Die Autoren arbeiten am renommierten Northeast Parallel Architectures Center.

Principles of Transactional Memory

Principles of Transactional Memory
Author: Rachid Guerraoui
Publisher: Morgan & Claypool Publishers
Total Pages: 193
Release: 2010-04-04
Genre: Technology & Engineering
ISBN: 1608450120

Transactional memory (TM) is an appealing paradigm for concurrent programming on shared memory architectures. With a TM, threads of an application communicate, and synchronize their actions, via in-memory transactions. Each transaction can perform any number of operations on shared data, and then either commit or abort. When the transaction commits, the effects of all its operations become immediately visible to other transactions; when it aborts, however, those effects are entirely discarded. Transactions are atomic: programmers get the illusion that every transaction executes all its operations instantaneously, at some single and unique point in time. Yet, a TM runs transactions concurrently to leverage the parallelism offered by modern processors. The aim of this book is to provide theoretical foundations for transactional memory. This includes defining a model of a TM, as well as answering precisely when a TM implementation is correct, what kind of properties it can ensure, what are the power and limitations of a TM, and what inherent trade-offs are involved in designing a TM algorithm. While the focus of this book is on the fundamental principles, its goal is to capture the common intuition behind the semantics of TMs and the properties of existing TM implementations. Table of Contents: Introduction / Shared Memory Systems / Transactional Memory: A Primer / TM Correctness Issues / Implementing a TM / Further Reading / Opacity / Proving Opacity: An Example / Opacity vs.\ Atomicity / Further Reading / The Liveness of a TM / Lock-Based TMs / Obstruction-Free TMs / General Liveness of TMs / Further Reading / Conclusions