Parallel Languages

Java Concurrency in Practice
Average customer rating: 5 out of 5 stars
  • Teaches clear thinking in thread programming
  • Very useful book on an increasingly important topic
  • Excellent
  • Good textual Book
  • Java Concurrency in Practice
Java Concurrency in Practice
Brian Goetz , Tim Peierls , Joshua Bloch , Joseph Bowbeer , David Holmes , and Doug Lea
Manufacturer: Addison-Wesley Professional
ProductGroup: Book
Binding: Paperback

GeneralGeneral | Java | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Languages & Tools | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Software | Computers & Internet | Subjects | Books
Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
GeneralGeneral | Software Books | Custom Stores | Stores | Software
Similar Items:
  1. Java(TM) Puzzlers: Traps, Pitfalls, and Corner Cases
  2. Java Generics and Collections
  3. Effective Java Programming Language Guide
  4. Java Persistence with Hibernate
  5. Thinking in Java (4th Edition)

ASIN: 0321349601

Customer Reviews:

5 out of 5 stars Teaches clear thinking in thread programming.......2007-06-22

Perfectly lucid style combined with a number of architectural patterns makes this book a treasure. Totally love it.

5 out of 5 stars Very useful book on an increasingly important topic.......2007-06-05

I have been programming in Java for years, and yet I've generally ignored or otherwise avoided dealing with concurrency and synchronization at every opportunity because I found it so daunting. This book broke down that barrier for me and helped me to understand what I needed to do to write correct concurrent programs. In particular, the book provides concrete instructions that I was able to apply to projects that I am working on right now.

I would highly recommend this book to any Java programmer, as you are probably missing out on part of the capabilities of your language (and/or writing incorrect programs!) until you read this. It's probably not a bad lesson for developers of concurrent software in any language, but the concrete instructions regarding Java were really the most valuable part of the book to me.

5 out of 5 stars Excellent.......2007-05-31

Essential reading. Extremely well organized and written. Everything you need to know is covered in detail. If you have not read this book, it's not likely that you will be able to write correct concurrent applications. There's just way too much to know.

4 out of 5 stars Good textual Book.......2007-05-23

Goetz did a really nice nice job in putting together lots of issues on how to deal with concurrency in Java, not focusing only the util.concurrent/Java 5 API but how to make other aspects of the platform (such as frameworks, servlets and swing apps) to use them. The book is full of useful and detaild (although not boring) information and advice, using real examples.

5 out of 5 stars Java Concurrency in Practice.......2007-04-18

I'm not a stranger to the java.util.concurrent package, but must admit that I learned and awful lot by reading this (really well written) book. But be warned: The more you know, the more you know you don't know...
Patterns for Parallel Programming (Software Patterns Series)
Average customer rating: 4.5 out of 5 stars
  • A good start
  • Good book for parallel computing
  • a pattern language
Patterns for Parallel Programming (Software Patterns Series)
Timothy G. Mattson , Beverly A. Sanders , and Berna L. Massingill
Manufacturer: Addison-Wesley Professional
ProductGroup: Book
Binding: Hardcover

Software DevelopmentSoftware Development | Software Design | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Languages & Tools | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Software | Computers & Internet | Subjects | Books
Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
Qualifying Textbooks - Spring 2007Qualifying Textbooks - Spring 2007 | Stores | Books
Software DevelopmentSoftware Development | Design & Development | Software Books | Custom Stores | Stores | Software
GeneralGeneral | Software Books | Custom Stores | Stores | Software
Similar Items:
  1. The Sourcebook of Parallel Computing (The Morgan Kaufmann Series in Computer Architecture and Design)
  2. Parallel Programming in OpenMP
  3. Parallel Programming With MPI
  4. Pattern-Oriented Software Architecture Volume 2: Patterns for Concurrent and Networked Objects
  5. GPU Gems 2: Programming Techniques for High-Performance Graphics and General-Purpose Computation (Gpu Gems)

ASIN: 0321228111

Customer Reviews:

4 out of 5 stars A good start.......2006-10-09

Parallel programming has been around for years, in many different forms. It has usually been a specialty for supercomputing number crunchers and for the occasional OS geek. Now that traditional, single-processor solutions are hitting the wall, Moore's Law must grow in new directions: multithreaded processos, multi-cores, multi-processors, and wilder exotica. The hardware is entering the market now, and the software community is scrambling to develop the necessry skills for parallel program development. This book gives a fair introduction to a large range of the techniques available.

After getting the reader oriented to the basics of parallel programming, the authors lay out four "design spaces," or families of related patterns. Within each space, the authors present a handful of patterns using a common and reasonably familiar format: name, problem addressed, context, forces acting on the design, the solution, and examples of the pattern's usage. They identify spaces named Finding Concurrency, Algorithm Structure, Supporting Structures, and Implementation Mechanisms. Of course, these topics overlap to some extend, especially in the interplay of algorithm design and explitable parallelism, or in langauge and API primitives that blur support mechanisms available with the implemenation choices available to the programmer. The authors show how the pieces come together in familiar applications, including molecular dynamics and medical imaging applications. Appendices sketch the basic programming constructs available in three of the major parallelism toolkits around: OpenMP, MPI, and Java.

Although valuable, this book has a number of weaknesses. For example, they cite the Cooley-Tukey FFT algorithm as a winning example of "Divide and Conquer." It's a great example, but perhaps not the one most useful for didactic purposes. The FFT algortithm is brilliant, and based on deep insight combined with total fluency in handling combinations of trig functions. Programmers writing parallel code will always benefit in proportion to their understanding of the algorithms, but I would find it discouraging to think that mastery and creativity at Cooley and Tukey's level were requisite. The authors skip over the kinds of fine-grained parallelism and communication available in emerging platforms, such as FPGA- and GPU-based accelerators. At the opposite end of the spectrum, they also gloss over many of the management issues in grid computing, where parallelism is extremely coarse-grained. I also have reservations about some of the system primitives they identify as patterns - one may as well say that a "for" loop is a pattern, even though it's a primitive in nearly all programming languages.

Despite flaws, the authors do reasonably well at introducing a wide range of basics for writing parallel programs. The interested beginner will need a lot more information to put the ideas to use, but this is a fair start.

//wiredweird

5 out of 5 stars Good book for parallel computing.......2005-11-24

This is an excellent introduction to parallel computing. It presents patterns for discovering what can be parallized, what data structures can be used, how to choose algorithms. Patterns are demonstrated by good examples showing benefits and trade-offs of different solutions. There is also a brief, but very useful introduction to common implementations: OpenMP, MPI, and regular procedural approach demonstrated with Java.

Some caution about what this book is not: this is not a general parallel programming designand patterns book (as I expected from the title). The focus of this book is parallel computing (i.e. scalable _calculations_, often scientific). There is somewhat more to parallel _programming_ than this book covers.

Still, I found this book very good and useful, even though I expected broader coverage.

5 out of 5 stars a pattern language.......2004-12-31

This book tries to do for parallel programming what the seminal Gang of Four book did for sequential programming. While it remains to be seen if Mattson, Sanders and Massingill will succeed, their book serves a vital educational role.

Until the 90s, parallel programming was relatively rare. But as hardware continued to get cheaper, many practical uses emerged. The authors point out that the bottleneck has now shifted to software. How does one find concurrency in a design? And given this, how to code it? The book tackles both issues. The latter is treated by explaining how to use MPI, OpenMP and Java for parallel coding. Where MPI and OpenMP were expressly made for this task. And with Java, the book discusses its concurrency classes and how these can be applied to parallel problems.

The former issue of somehow finding concurrency is harder. This is really a wetware issue. You are the wetware. The book's core value is in showing common parallel patterns, that distills the essence of much previous work in the field. Plus, the book is not just iterating through a list of such patterns. As with the GoF, we have a pattern language. A metalevel, in which a walkthrough of the patterns and comparing these with your problem, helps you find appropriate patterns to map it to.
History: Fiction or Science? (Chronology, No. 1)
Average customer rating: 4.5 out of 5 stars
  • Accepted History & Chronology Must Be Changed.
  • Very Interesting
  • History as Science Fiction
  • Provocative, appealing and controversial
  • pharaohs lived in the 3rd century AD
History: Fiction or Science? (Chronology, No. 1)
Anatoly Fomenko
Manufacturer: Mithec
ProductGroup: Book
Binding: Paperback

ChineseChinese | Ethnic & National | Biographies & Memoirs | Subjects | Books
IrishIrish | Ethnic & National | Biographies & Memoirs | Subjects | Books
JapaneseJapanese | Ethnic & National | Biographies & Memoirs | Subjects | Books
WomenWomen | Specific Groups | Biographies & Memoirs | Subjects | Books
Augustine, SaintAugustine, Saint | ( A ) | People, A-Z | Biographies & Memoirs | Subjects | Books
Doctors & MedicineDoctors & Medicine | Humor | Entertainment | Subjects | Books
Lawyers & CriminalsLawyers & Criminals | Humor | Entertainment | Subjects | Books
Love, Sex & MarriageLove, Sex & Marriage | Humor | Entertainment | Subjects | Books
Assyria, Babylonia & SumerAssyria, Babylonia & Sumer | Ancient | History | Subjects | Books
Early CivilizationEarly Civilization | Ancient | History | Subjects | Books
GeneralGeneral | Ancient | History | Subjects | Books
HistoriographyHistoriography | Historical Study | History | Subjects | Books
GeneralGeneral | World | History | Subjects | Books
GeneralGeneral | Asian American | United States | World Literature | Literature & Fiction | Subjects | Books
Asian AmericanAsian American | Poetry | United States | World Literature | Literature & Fiction | Subjects | Books
FrenchFrench | Erotica | Literature & Fiction | Subjects | Books
VictorianVictorian | Erotica | Literature & Fiction | Subjects | Books
EpicEpic | Poetry | Literature & Fiction | Subjects | Books
GermanGerman | Poetry | Literature & Fiction | Subjects | Books
RussianRussian | Poetry | Literature & Fiction | Subjects | Books
SpanishSpanish | Poetry | Literature & Fiction | Subjects | Books
ChineseChinese | Classics | Literature & Fiction | Subjects | Books
Conspiracy TheoriesConspiracy Theories | Current Events | Nonfiction | Subjects | Books
War on DrugsWar on Drugs | Crime & Criminals | Nonfiction | Subjects | Books
English (All)English (All) | Dictionaries & Thesauruses | Reference | Subjects | Books
ArabicArabic | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
ArmenianArmenian | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
CzechCzech | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
GreekGreek | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
HungarianHungarian | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
JapaneseJapanese | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
KoreanKorean | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
NorwegianNorwegian | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
Persian & FarsiPersian & Farsi | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
PolishPolish | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
PortuguesePortuguese | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
RomanianRomanian | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
RussianRussian | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
SwedishSwedish | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
TurkishTurkish | Foreign Language | Dictionaries & Thesauruses | Reference | Subjects | Books
ScienceScience | Dictionaries & Thesauruses | Reference | Subjects | Books
Online ResearchOnline Research | Genealogy | Reference | Subjects | Books
Native AmericanNative American | Earth-Based Religions | Religion & Spirituality | Subjects | Books
GeneralGeneral | Science | Subjects | Books
GeneralGeneral | History & Philosophy | Science | Subjects | Books
History of ScienceHistory of Science | History & Philosophy | Science | Subjects | Books
Magic & WizardsMagic & Wizards | Fantasy | Science Fiction & Fantasy | Subjects | Books
Sailor MoonSailor Moon | Popular Characters | Children's Books | Subjects | Books
PilatesPilates | Exercise & Fitness | Health, Mind & Body | Subjects | Books
HistoryHistory | Fashion | Arts & Photography | Subjects | Books
Look Inside Art BooksLook Inside Art Books | Trip | Specialty Stores | Books
Look Inside BiographiesLook Inside Biographies | Trip | Specialty Stores | Books
Look Inside Children's BooksLook Inside Children's Books | Trip | Specialty Stores | Books
Look Inside Entertainment BooksLook Inside Entertainment Books | Trip | Specialty Stores | Books
Look Inside Health BooksLook Inside Health Books | Trip | Specialty Stores | Books
Look Inside History BooksLook Inside History Books | Trip | Specialty Stores | Books
Look Inside Fiction BooksLook Inside Fiction Books | Trip | Specialty Stores | Books
Look Inside Nonfiction BooksLook Inside Nonfiction Books | Trip | Specialty Stores | Books
Look Inside Reference BooksLook Inside Reference Books | Trip | Specialty Stores | Books
Look Inside Religion & Spirituality BooksLook Inside Religion & Spirituality Books | Trip | Specialty Stores | Books
Look Inside Romance BooksLook Inside Romance Books | Trip | Specialty Stores | Books
Look Inside Science BooksLook Inside Science Books | Trip | Specialty Stores | Books
Look Inside Science Fiction & Fantasy BooksLook Inside Science Fiction & Fantasy Books | Trip | Specialty Stores | Books
Similar Items:
  1. History: Fiction or Science? Chronology 2 (Chronology)
  2. Discovering the Mysteries of Ancient America: Lost History And Legends, Unearthed And Explored
  3. Before the Pharaohs: Egypt's Mysterious Prehistory
  4. Forbidden History: Prehistoric Technologies, Extraterrestrial Intervention, and the Suppressed Origins of Civilization
  5. They Cast No Shadows: A Collection of Essays on the Illuminati, Revisionist History, and Suppressed Technologies

ASIN: 2913621058

Book Description

Recorded history is a finely-woven magic fabric of intricate lies about events predating the sixteenth century. There is not a single piece of evidence that can be reliably and independently traced back earlier than the eleventh century. This book details events that are substantiated by hard facts and logic, and validated by new astronomical research and statistical analysis of ancient sources.

Customer Reviews:

5 out of 5 stars Accepted History & Chronology Must Be Changed. .......2007-04-09

There is no doubt that history as most know it is a sham, & institution's version of History both University & Church is fradulent & inaccurate. Everything was established with an agenda, The real "Dark Ages" are now when we have access to incredible amounts of information past authorities & more important 'common folk' didn't have but our institutions & educators are slow to evolve because of what has ignorantly & arrogantly been taught for too long. This is on many subjects not just Chronology.

For anyone to question "Why would a Mathematician have anything credible to say of History?" The answer is from Dr. Fomenko's preface in the book: "It would be worthwhile to remind the reader that in the XVI-XVII century Chronology was considered to be a subdivision of Mathematics." These volumes could possibly be some of the most important works to date & should be read by everyone with an interest in History, especially professors & educators who have a duty to the public. I have read both books & must say that 'Chronology 1' has some very eye opening & revolutionary information. Even if these volumes are part true the implications are profound & opens the doors to further investigations & questions which must be done. I speak several different lanquages & must say the logic Dr. Fomenko uses with "inflection" of words & words being read from left to right in one region & right to left in another then written backwards, the removal of vowels & get down to basics of words, or different cities & locations having the same name etc. is correct. Vowel usage has always been optional & varied, actually complicating linquistics & study. The first thing one has to understand is that words never had a fixed spelling in history like we do now, the spelling of words was mutable & regional, as well as names & titles of people were vast, varied & changed, NOTHING WAS FIXED or understood linear. Matters of Life & Death as well as financial profiteering yesterday & today were & are made with ignorant, illogical & conspiratorial views of history & reality, it's time people get closer to the Truth & society collectively grow up.

5 out of 5 stars Very Interesting.......2007-03-07

It is a good proposal and I believe it will mature into something even better in the future. I think it deserves to be read.

4 out of 5 stars History as Science Fiction.......2007-01-10

Anatoly Fomenko has written a very intriguing book, full of pictures, charts, and computer 'proof' of his thesis: backwards of AD900 we don't really know what happened or when. Between AD900 and AD1600 there is more certainty, but there is still a lot of fuzzy ground, and things don't get reliable until we get past the 1600's where the printing press made it very difficult for the perpetrators of this timeline manipulation to change anything that had been committed to print. The Dark Ages did not happen. Books were burned for a reason. One organization has doubled the actual length of its existence by expanding the real chronology. Read why.

I had always wondered why Christ died about AD33 and yet men waited until the 11th century to form the Knights Templar, the Cathars, etc and go after the Holy Land by force. Why the 1000 year gap? Turns out there wasn't more than a 10-12 year gap and he proves it using astronomy. This also implies that the planet is not as old as we have been told, and current Christian and other creationist scientists are already championing that idea without being aware of Fomenko's book. The two groups, creationist scientists and the Russian mathematical analysts corroborate each other. Fascinating.

Of course, all this flies in the face of what we have been told traditionally is the 'proper' chronology of western civilization, and most readers will experience 'cognitive dissonance' in reading this book. It means that our history going backwards from AD1600 becomes progressively more incorrect and unreliable until it cannot be trusted at all... in the space of 700-800 years.

Naturally, the curious, open-minded reader will want to know WHO did this, WHY, and did any of the events we think of as really ancient ever happen?
Dr. Fomenko is a respected scientist/mathematician at Moscow State University who has already answered these questions to the satisfaction of his initially skeptical colleagues. Most of them are now believers, a few still refuse to believe (the usual diehards), and of course the western press has ignored Fomenko's work -- for obvious reasons when you read the book. The ones who perpetrated this chronology ruse have a lot to answer for. They are still with us. That's why this book is a well-kept secret.

I gave the book a 4-star rating because I was unable to check out some of his claims; those I checked were as he said. But if even 1/3 of his claims are true, this punches a big hole in what we think is our history, the meaning of western civilization, our educational process (for repeating the ruse as gospel), and the trustworthiness of the organization that perpetrated this ruse, well-intentioned or not.

This book relates to current research into a Young Earth paradigm, to John Keel's discoveries about our planet, and Fr Malachi Martin's insights (in his now out-of-print books). We are indeed sheep who are manipulated and kept ignorant -- for a reason. While knowing what these men have to say may be the "booby prize" (as in: 'what can you do with this knowledge?'), it will provide interesting reading. Didn't someone say: "...and the Truth will set you free."?? For you to judge if this book contains the truth.

5 out of 5 stars Provocative, appealing and controversial.......2006-08-02

Fomenko has succeeded to convincingly demonstrate the misconception about what "history" factually is... It is fiction and -like we can read and judge for ourselves- no science. It indeed is "make belief" only. I "discovered" Fomenko while studying the "old" history of Al Andaluz, Spain. Having found too many contradictions in available data, having seen too many forgeries as to pretend the importance of christianity for its decline, I ventured out to find Fomenko, who convinced me that we know little if anything for sure of the epoch before the XI-century. However, the integration of the Arabic-Islamic cultural history into the heavily distorted Western fails... There are some attempts to fit "the budding new religion" (Islam) into Fomenko's scheme, but they are too weak to be taken seriously and too often focussing on Turkey as the region where things started to influence the West, which is untrue at all.
Islam certainly was no "new religion" in the X-century. That the highly cultivated Al Andaluz ruler Mohammed-I could have been "mirrored" down in time into some myth about the "illiterate" founder of Islam itself is highly speculative. Nevertheless, Fomenko convinces me about the processes that were involved in forging a christian history. Intriguing and controversial as his books are, I recommend them as to rethink our current position in time and space and simply verify what was claimed. It is a "good" book, but not for bedtime reading... Mundus vult decipi, the world wants to be cheated. Fomenko's readers will understand why.

5 out of 5 stars pharaohs lived in the 3rd century AD.......2006-02-16

Traces of white wine were found in Tutankhamen's tomb however there were no record of white wine in Egypt until the 3rd century AD, 1600 years after the young pharaoh died according to the traditional chronology. http://www.newscientist.com/channel/being-human/mg18925395.400
It can be interpreted as a contribution towards New Chronology theory that pharaohs lived in the 3rd century AD.
Win32 Multithreaded Programming
Average customer rating: 4.5 out of 5 stars
  • Win32 Multithreaded Programming Review
  • A lot of useful techniques
  • A very good book on multithreading
  • Ok book... but wrapper class is more of a distraction
  • This one is a Keeper
Win32 Multithreaded Programming
Aaron Cohen , and Mike Woodring
Manufacturer: O'Reilly
ProductGroup: Book
Binding: Paperback

Parallel ComputingParallel Computing | System Architecture | Hardware | Computers & Internet | Subjects | Books
Win32 APIWin32 API | APIs & Operating Environments | Programming | Computers & Internet | Subjects | Books
Software DevelopmentSoftware Development | Software Design | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Programming | Computers & Internet | Subjects | Books
Windows - GeneralWindows - General | Operating Systems | Microsoft | Computers & Internet | Subjects | Books
GeneralGeneral | Computers & Internet | Subjects | Books
GeneralGeneral | Operating Systems | Computers & Internet | Subjects | Books
GeneralGeneral | Software | Computers & Internet | Subjects | Books
GeneralGeneral | Windows | O'Reilly | By Publisher | Books
Windows NTWindows NT | Windows | O'Reilly | By Publisher | Books
WindowsWindows | Programming | O'Reilly | By Publisher | Books
GeneralGeneral | Programming | O'Reilly | By Publisher | Books
Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
Software DevelopmentSoftware Development | Design & Development | Software Books | Custom Stores | Stores | Software
GeneralGeneral | Software Books | Custom Stores | Stores | Software
Similar Items:
  1. Multithreading Applications in Win32: The Complete Guide to Threads
  2. Network Programming for Microsoft Windows, Second Edition
  3. Incorporations (Zone 6)
  4. On Not Being Able to Paint
  5. The Psychology of Shame

ASIN: 1565922964

Book Description

Many Windows developers still write code as if their application is a single entity that, while it is running, has complete control of all system resources. This legacy from the days of DOS means that developers frequently fail to take advantage of Win32's support of multiple threads of execution to improve their application's performance or to enhance its functionality. For instance, a main thread can handle interactions with the user, while a background "worker" thread can handle repainting the application window or performing some background calculations. But multithreaded programming means more than adding threads; it also requires that the code be thread-safe.

Win32 Multithread Programming explains the concepts of multithreaded programs, thus providing the developer with the knowledge necessary to skillfully construct efficient and complex applications. From basic thread synchronization using mutexes and semaphores, to advanced topics like creating reusable thread pools or implementing a deferred processing queue, the book uses real-world applications and carefully constructed examples to illustrate the principles of multithreaded programming. Some of the topics include:

<ul>

  • How the Windows operating systems handle threads</li>
  • Multithreading primitives in the Win32 API</li>
  • Techniques for generating thread-safe dynamic link libraries</li>
  • Advanced techniques for thread synchronization</li>
  • Basic scenarios for synchronizing threads</li>
  • Common designs for building multithreaded user interfaces</li></ul>

    The CD-ROM accompanying the book features Mcl, the authors' C++ class library for multithreaded programming, which both wraps multithreaded API functions and easily supports more complex multithreaded scenarios. For programmers using MFC, an additional library, Mcl4Mfc, is included for MFC compatibility.

    Win32 Multithread Programming is an essential resource for any developer interested in learning about Win32 multithreaded programming in order to create high-performance, effective applications.

    Customer Reviews:

    5 out of 5 stars Win32 Multithreaded Programming Review.......2005-10-04

    Good overview for how most operating systems work. In depth implementation overview for the different type of kernel objects that can be used via Win32 API to sync your windows threads. Good examples of syncing situations.

    5 out of 5 stars A lot of useful techniques.......2001-03-08

    I do not deny that the style of writing can be terse at some points. However this book covers a lot of ground on how to write a good , thread safe codes. The class included has provided a lot of usable codes that can be used in complex sowftware projects.

    5 out of 5 stars A very good book on multithreading.......2000-11-19

    I have not seen a better book on multithreading than this one...

    3 out of 5 stars Ok book... but wrapper class is more of a distraction.......2000-09-07

    The first five chapters are above average. I considered the wrapper class a distraction from the main topic and would have preferred more examples. This book is definately not for the novice and would be better for the experienced MT programmer whose looking for a quick refresher. If you are looking for a beginner's MT book keep looking as this one is not for you.

    5 out of 5 stars This one is a Keeper.......2000-03-17

    Here's what I liked about the book:

    (1) It provides simple explanation of central concepts and issues around multithreaded programming. This knowledge is platform independent.

    (2) Provides clear explanation of Win32 specific API and Kernel Objects, knowledge that is necessary to do Multithreaded Programming on most Microsoft Platforms.

    (3) Builds a simple C++ based OO Wrapper class Library for Multithreaded programming that elegantly conceals Win32 APIs idiosyncrasies.

    (4) Also builds additional higher Level OO Abstractions (like Monitors) that Win32 does not need to support directly but Programmers need often.

    (5) Great illustrations of Multithreading problems, solutions and Patterns through the trailing part of the book.

    (6) Code and Diagrams abound.

    What's there not to like?
    Pattern-Oriented Software Architecture Volume 2: Patterns for Concurrent and Networked Objects
    Average customer rating: 4.5 out of 5 stars
    • Essential reading for programmers in its domain
    • Simply the best
    • Good information badly written
    • Good Patterns Hidden in Excessive Verbiage
    • Size does matter
    Pattern-Oriented Software Architecture Volume 2: Patterns for Concurrent and Networked Objects
    Douglas Schmidt , Michael Stal , Hans Rohnert , and Frank Buschmann
    Manufacturer: Wiley
    ProductGroup: Book
    Binding: Hardcover

    NetworkingNetworking | Subjects | Certification Central | Computers & Internet | Subjects | Books
    GeneralGeneral | Certification Central | Computers & Internet | Subjects | Books
    Computer DesignComputer Design | Microprocessors & System Design | Hardware | Computers & Internet | Subjects | Books
    Parallel ComputingParallel Computing | System Architecture | Hardware | Computers & Internet | Subjects | Books
    GeneralGeneral | System Architecture | Hardware | Computers & Internet | Subjects | Books
    Object-Oriented DesignObject-Oriented Design | Software Design | Programming | Computers & Internet | Subjects | Books
    Software DesignSoftware Design | Software Design | Programming | Computers & Internet | Subjects | Books
    Software DevelopmentSoftware Development | Software Design | Programming | Computers & Internet | Subjects | Books
    Information SystemsInformation Systems | Software Engineering | Computer Science | Computers & Internet | Subjects | Books
    GeneralGeneral | Computers & Internet | Subjects | Books
    GeneralGeneral | Medicine | Subjects | Books
    SoftwareSoftware | Information Systems | Computer Science & Information Systems | New & Used Textbooks | Stores | Books
    Qualifying Textbooks - Spring 2007Qualifying Textbooks - Spring 2007 | Stores | Books
    Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
    Look Inside Science BooksLook Inside Science Books | Trip | Specialty Stores | Books
    Object-Oriented DesignObject-Oriented Design | Design & Development | Software Books | Custom Stores | Stores | Software
    Software DesignSoftware Design | Design & Development | Software Books | Custom Stores | Stores | Software
    Software DevelopmentSoftware Development | Design & Development | Software Books | Custom Stores | Stores | Software
    Similar Items:
    1. Pattern-Oriented Software Architecture Volume 1: A System of Patterns
    2. Pattern-Oriented Software Architecture Volume 3: Patterns for Resource Management
    3. Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series)
    4. Patterns of Enterprise Application Architecture
    5. The ACE Programmer's Guide: Practical Design Patterns for Network and Systems Programming

    ASIN: 0471606952

    Book Description

    Designing application and middleware software to run in concurrent and networked environments is a significant challenge to software developers. The patterns catalogued in this second volume of Pattern-Oriented Software Architectures (POSA) form the basis of a pattern language that addresses issues associated with concurrency and networking.

    The book presents 17 interrelated patterns ranging from idioms through architectural designs. They cover core elements of building concurrent and network systems: service access and configuration, event handling, synchronization,

    and concurrency. All patterns present extensive examples and known uses in multiple programming languages, including C++, C, and Java.

    The book can be used to tackle specific software development problems or read from cover to cover to provide a fundamental understanding of the best practices for constructing concurrent and networked applications and middleware.

    About the Authors

    This book has been written by the award winning team responsible for the first POSA volume "A System of Patterns", joined in this volume by Douglas C. Schmidt from University of California, Irvine (UCI), USA.

    Visit our Web Page

    Customer Reviews:

    4 out of 5 stars Essential reading for programmers in its domain.......2006-08-11

    I recently finished reading Pattern Oriented Software Architecture Vol 2: Patterns for Networked and Concurrent Objects. Believe it or not, it took me just one night to read this book cover to cover. The main reasons behind this are that a) the techniques described in this book are already well known to people working in a company that deals with some of the largest network applications in the world, and b) the book itself is very well written.

    The really nice thing about this book is the way in which the patterns are presented. I was thoroughly impressed with how, for each pattern, the authors start with describing the problems and constraints. The solution is then presented with a static, object view. This is follwed by a dynamic view with a UML sequence diagram that shows how the pattern works at run-time. This is followed by detailed textual description of the steps required to implement the pattern, along with code snippets. Lastly, there's a list of real-world software implementations that have used the respective patterns, and one example from real life. The real life example is on occasion so instrumental in understanding the purpose and/or workings of the pattern that it could make you exclaim, "a-ha!".

    Many of the patterns, like Wrapper Facade, Scoped Locking Idiom, Thread-safe Interface, Half-Sync/Half-Async, Leader/Followers, etc. are easy to follow and likely already known to people dealing with networked applications. The most insane patterns that I found were Proactor (for asynchronous demultiplexing and handling of events) and Interceptor (for event based access to the internals of a framework in a safe manner). They have the potential of making you start hating frameworks! About half of the patterns were new for me.

    5 out of 5 stars Simply the best.......2006-03-10

    If you really want to understand concurrent networked systems, this is the book. It codifies things that have only been known as "black magic" in the past. I have used these concepts in code that I have written, and the results are amazing. It is quite focused on ACE, so you will get the most benefit out of it if you use ACE, but the concepts are presented generally so that using ACE is not required.

    2 out of 5 stars Good information badly written.......2005-04-08

    This book summarizes some important distributed systems patterns researchers have identified in recent years. In that sense it is a necessary contribution to the software engineering literature.

    However, the examples are at times unclear and the author does not always motivate them convincingly. From a technical writing perspective, the passive voice plagues this book from start to end, forcing readers to stop and reread sections to make sense of convoluted prose.

    4 out of 5 stars Good Patterns Hidden in Excessive Verbiage.......2004-11-22

    First, the patterns in this book are very good. It was nice to see some coverage of low level networking patterns. As an experienced programmer, I was vaguely familiar with many of the patterns already, but it is really helpful to see the lines drawn in the sand, to hear why the authors chose to break things up as they did, and to understand the ramifications of the patterns in greater detail (eg, their clarification of the difference between Observer and Interceptor was quite helpful). I even got to learn some new patterns! (The Leader / Followers pattern was new to me.)

    That said, the writing style about drove me BANANAS! I have never lost my place in a sentence when reading a book so many times. I must have read every line twice. Look, I'm a computer geek - I LOVE dense technical books, but this is something else. It's like reading Shakespear, or Charles Dickens. The authors must have been paid by the word. The specific implies the general! Have mercy! I don't need the difference between an interface and its concrete implementation belabored every time it comes up (and in a patterns book, believe me it's often!)

    4 out of 5 stars Size does matter.......2004-10-27

    Big problems really are different from small problems. Solutions to small problems rarely scale well - the big solution often has to be different in kind from the small one. This book is about solutions to big problems, the kind that may involve hundreds of servers and thousands of clients, or more.

    This gives a clear, thorough description of about 15 design patterns that work well large, performance-sensitive applications. Some (like "Scoped Locking") depend on the specific semantics of C++, but may work in Java or C# if used carefully. Others are highly specialized implementations of more general patterns. The "Leader/Followers" pattern, for example, is a one implementation of the "Object Pool" pattern (see Grand, 'Patterns in Java', 1998) used for a particular purpose. On the whole, the authors did a fair job of relating these patterns to others in the literature. I was only occasionally frustrated that I did not have that literature at hand when reading this.

    The authors go into extreme detail in describing implementations based on each pattern, something sure to help some readers. There is often a C++ implementation as well, at least in skeletal form. The descriptions go on at great length, averaging almost thirty pages of discussion for each pattern. More isn't necessarily better, though, and some descriptions would have benefitted from a slimming program. I would also have been grateful for more differential discussion - comparing patterns, in terms of the specific decision critieria that argue for one pattern vs. another.

    The back matter in this book takes about 100 pages - glossary, bibliography, and indices by pattern, topic, and author names. Very helpful stuff. If it's going to be that long, however, a sentence or two about the more important references would have added little bulk but lots of value to the bibliography.

    The book is a good one, giving lots of practical information about the patterns it discusses. It's aimed at an experiecned reader, someone already conversant with OO programming, patterns, and at least a taste of problems bigger than classroom exercises or solo projects. A bit less mass chosen a bit more carefully would have improved this book, but it's still a worthwhile addition to my technical library.

    //wiredweird
    Parallel Programming With MPI
    Average customer rating: 4.5 out of 5 stars
    • Great for MPI beginners
    • Your MPI on-ramp
    • Just what I needed
    • Well written, easy for someone who is not an MPI guru... yet
    • Very insightful!
    Parallel Programming With MPI
    Peter Pacheco
    Manufacturer: Morgan Kaufmann
    ProductGroup: Book
    Binding: Paperback

    Parallel ComputingParallel Computing | System Architecture | Hardware | Computers & Internet | Subjects | Books
    GeneralGeneral | System Architecture | Hardware | Computers & Internet | Subjects | Books
    GeneralGeneral | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Software | Computers & Internet | Subjects | Books
    MathematicsMathematics | Professional Science | Professional & Technical | Subjects | Books | Applied | Chaos & Systems | Geometry & Topology | Mathematical Analysis | Mathematical Physics | Number Systems | Pure Mathematics | Transformations | Trigonometry
    Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
    All Amazon UpgradeAll Amazon Upgrade | Amazon Upgrade | Stores | Books
    Computers & InternetComputers & Internet | Amazon Upgrade | Stores | Books
    Professional & TechnicalProfessional & Technical | Amazon Upgrade | Stores | Books
    Qualifying Textbooks - Spring 2007Qualifying Textbooks - Spring 2007 | Stores | Books
    GeneralGeneral | Software Books | Custom Stores | Stores | Software
    Similar Items:
    1. Using MPI - 2nd Edition: Portable Parallel Programming with the Message Passing Interface (Scientific and Engineering Computation)
    2. MPI: The Complete Reference (2-volume set)
    3. Parallel Programming in OpenMP
    4. Parallel Scientific Computing in C++ and MPI: A Seamless Approach to Parallel Algorithms and their Implementation
    5. Parallel Programming in C with MPI and OpenMP

    ASIN: 1558603395

    Book Description

    A hands-on introduction to parallel programming based on the Message-Passing Interface (MPI) standard, the de-facto industry standard adopted by major vendors of commercial parallel systems. This textbook/tutorial, based on the C language, contains many fully-developed examples and exercises. The complete source code for the examples is available in both C and Fortran 77. Students and professionals will find that the portability of MPI, combined with a thorough grounding in parallel programming principles, will allow them to program any parallel system, from a network of workstations to a parallel supercomputer.

    * Proceeds from basic blocking sends and receives to the most esoteric aspects of MPI.
    * Includes extensive coverage of performance and debugging.
    * Discusses a variety of approaches to the problem of basic I/O on parallel machines.
    * Provides exercises and programming assignments.

    Customer Reviews:

    4 out of 5 stars Great for MPI beginners.......2006-11-09

    Pacheco's book is a strong, gently paced introduction to a very complex API. MPI, the message passing interface, is the most common coordination tool for parallel scientific computing. When a Blue Gene programmer has 1,000 or 100,000 processors all working on different parts of one calculation, there's a big problem in getting partial results from where they're computed to where they're needed. That's what MPI is for.

    When the problem is so complicated, the solution is also complicated. Pacheco does a good job of breaking MPI down into digestible pieces, starting with the basic send and receive primitives that you'll use most often. He presents each new part of the API in terms of some problem to be solved, keeping a concrete and practical tone to this book. He gradually adds more pieces in terms of more practical exercises: broadcasts and reductions, scatter and gather, data structuring, communicators, and asynchronous IO.

    Along the way, Pacheco introduces algorithms that even experienced uniprocessor programmers may not be familiar with, including bitonic sorting and Fox's algorithm for matrix multiplication. This isn't gratuitous intellectual showmanship. It's a pointed demonstration that, when communication barriers change the computation landscape, old paths to solutions may not be the best routes any more. After finishing with the MPI API itself, Pacheco presents debugging techniques and common kinds of support libraries, as well as basic techniques for analyzing the potential and actual acceleration possible for a given problem.

    If you're serious about MPI, you'll need the official standard for understanding the fussy details of these complex APIs. That's a pretty brutal way for a beginner to get going, though. This introduces not only the basic concepts of MPI, but also the basics of how to think about highly parallel programming. And, as multi-threaded multi-core multi-processor systems become common, that's an increasing percentage of all programming.

    //wiredweird

    5 out of 5 stars Your MPI on-ramp.......2006-09-23

    I read this book over the past week, covering chapters 1 through 6, skimming 7-10, and reading 11 through the final chapter 16. Its basically applied MPI programming, done up very well and clearly, starting with architectural history & motivations and leading into a simple numerical integrator example program in chapter 4 (chapter 3 was the MPI `hello, world'). The coding used is C, and I wrote my own integrator after finishing chapter 4 to also explore floating point numbers in calculations, loop control, and to integrate arbitrary functions on arbitrary intervals with adjustable resolution. The integrator is developed more fully throughout the book wherein MPI performance issues of the original design are pointed out and polished off as additional MPI functions and techniques are introduced. Some of these techniques included tree-structured initialization & broadcasts, data communication optimizations (such as derived types, packing / unpacking, etc), and guidance as to when certain techniques would be more useful than others offered by MPI. Communications are further advanced later in the book where the important non-blocking forms and more advanced concepts are brought to light & illustrated. Empirical analysis of algorithmic performance occupies two full chapters and is very interesting, including a detailed look into Amdahl's law. Its an excellent example of why we should keeps our eyes open in research. Program design & troubleshooting are also covered, but I only skimmed those chapters. Several parallel algorithms and some parallel libraries are also treated well in the text. At only 362 pages, (minus appendices) this book is a quick read and a superb lab manual. If you are a software developer just now getting into MPI, this book will certainly accelerate you onto MPI with the confidence that you can do anything with it. Just give it a week of your time. Its the perfect self-study manual.
    5-stars

    5 out of 5 stars Just what I needed.......2006-08-16

    I was looking for a good introduction into MPI to parallelize some software I had written. Somehow, no online resources seemed to cover the topic well, so $30 seemed like a worthwhile investment, compared to my time. I got this book and the more recent one by Quinn (PP in C with MPI and OpenMP). This one's the hands-down winner. I basically scanned it in bed for three nights, and two weeks later my code is running like a charm. Just the right mix of reference and tutorial, very little distraction, and a pleasant read throughout.

    Highly recommended.

    5 out of 5 stars Well written, easy for someone who is not an MPI guru... yet.......2005-05-22

    The book is written very well and goes through how the MPI functions work and all their parameters in pretty fine detail. He even talks about the simpler things many books overlook. The only thing I wish was in this book, and this has nothing to do with the quality of the book, is some C++ reference or talk of the C++ MPI calls. This book is written with examples in C only (I think FORTRAN one may be available online), but the theory he teaches and the design of the programs will work for any language, of course. It would be nice to have a good reference chapter that lists the FORTRAN MPI functions and the C++ ones too though.

    5 out of 5 stars Very insightful!.......2003-04-22

    This book is a great introduction not only to MPI but to parallel programming itself. Initially, one learns essential concepts of parallel programming, including hardware and network topologies. An MPI version of ``Hello World!'' gently introduces the reader to the mechanics of running MPI programs (if you haven't set up your parallel computing environment yet, this may well be the most time consuming chapter of the book!) In what follows, the author lays out the basics of each topic in parallel programming, followed by MPI-specific details (i.e. which MPI function is used in that situation). Particularly worthy of praise is the example-driven approach, whereby in each chapter a problem is presented (like numerical integration or matrix multiplication), and the author shows how to solve them with techniques taught in that chapter. Some problems are rehashed in other sections/chapters, in order to show different PP techniques to solve them. The book doesn't suffer from the black-box syndrome of hiding implementation details: the reader is usually shown the inner workings of, say, each communication technique, while being advised to use MPI's built-in functions instead of rolling out his own versions.

    Topics covered include collective communication methods, I/O, debugging, design, performance, parallel algorithms and libraries, and advanced topics in communication. A handy appendix on MPI functions wraps up the book.

    As an aside, I will be forever grateful to this book due to its clear exposition of the butterfly broadcast method, which helped me understand the Cooley-Tukey iterative version of the FFT (which uses the same butterfly idea), something I had been struggling with for a couple of years. I would have gladly bought the book for this explanation alone.
    Concurrent Programming in Java(TM): Design Principles and Pattern (2nd Edition)
    Average customer rating: 4 out of 5 stars
    • 5 for knowledge; 0 for the writing -> 2.5 -> 2
    • If you want to program concurency in Java you need this book
    • Great Threaded Programming Information for More than Java
    • Will make you a better programmer, but not for beginners.
    • "This is Phylosophy of concurrency".
    Concurrent Programming in Java(TM): Design Principles and Pattern (2nd Edition)
    Doug Lea
    Manufacturer: Prentice Hall PTR
    ProductGroup: Book
    Binding: Paperback

    GeneralGeneral | Java | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Languages & Tools | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Software | Computers & Internet | Subjects | Books
    MathematicsMathematics | Professional Science | Professional & Technical | Subjects | Books | Applied | Chaos & Systems | Geometry & Topology | Mathematical Analysis | Mathematical Physics | Number Systems | Pure Mathematics | Transformations | Trigonometry
    Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
    Qualifying Textbooks - Spring 2007Qualifying Textbooks - Spring 2007 | Stores | Books
    GeneralGeneral | Software Books | Custom Stores | Stores | Software
    Similar Items:
    1. Java Concurrency in Practice
    2. Effective Java Programming Language Guide
    3. Java Threads (Java Series (O'Reilly & Associates))
    4. Java Thread Programming
    5. Java(TM) Puzzlers: Traps, Pitfalls, and Corner Cases

    ASIN: 0201310090

    Amazon.com

    Concurrent Programming in Java, 2nd Edition surveys a wide field of research in parallelism and concurrency and shows how to do more with multithreading in Java with dozens of patterns and design tips. Written for the advanced Java developer, this book offers a comprehensive tour of leading-edge thinking about parallel coding processes.

    Within the dozens of techniques and tips offered here, this book accomplishes at least two goals. First, it shows how concurrency is implemented by default within Java, with material on how built-in features (like the synchronized keyword and its memory model) can be expected to perform when dealing with multiple threads. Naturally, Java threads themselves are also covered, including priorities, scheduling, and the like.

    Much of this book looks at ways to improve performance of concurrent code beyond the simple default strategies. After defining criteria for measuring concurrent code (such as safety and "liveness," a measure of running live threads effectively), the book presents dozens of techniques for letting threads work together safely. For the working Java programmer, coverage of patterns that have been implemented in the downloadable java.concurrency package will be the most immediately useful. (Within this nearly encyclopedic survey, short code snippets are used for every pattern and concept.)

    Though theoretical at times, this book offers plenty of ideas and sample code to get you started thinking of ways to improve multithreaded code.

    Impressively comprehensive, Concurrent Programming in Java offers a veritable bible of techniques for doing two things at once with threads in Java. It's a worthwhile guide to the state-of-the-art strategies for improving the performance of your Java threads. --Richard Dragan

    <B>Topics covered</B>: Threads and concurrency in Java, design considerations (safety, liveness, and performance), Before/After Patterns, layering, adapters, immutability and synchronization, deadlock, resource ordering, the Java Memory Model and concurrency, using the java.concurrency package, confinement, refactoring for concurrency, mutexes, read-write locks, recovering from failure, notifications, semaphores, latches, exchanges, transactions, one-way messages, worker threads, polling and event-driven I/O, parallelism techniques (fork/join, computation trees, and barriers), Communicating Sequential Processes (CSP).

    Book Description

    In this second edition, you will find thoroughly updated coverage of the Java(tm) 2 platform and new or expanded coverage of:

    * Memory model * Cancellation * Portable parallel programming * Utility classes for concurrency control

    The Java platform provides a broad and powerful set of APIs, tools, and technologies. One of its most powerful capabilities is the built-in support for threads. This makes concurrent programming an attractive yet challenging option for programmers using the Java programming language.

    This book shows readers how to use the Java platform's threading model more precisely by helping them to understand the patterns and tradeoffs associated with concurrent programming.

    You will learn how to initiate, control, and coordinate concurrent activities using the class java.lang.Thread, the keywords synchronized and volatile, and the methods wait, notify, and notifyAll. In addition, you will find detailed coverage of all aspects of concurrent programming, including such topics as confinement and synchronization, deadlocks and conflicts, state-dependent action control, asynchronous message passing and control flow, coordinated interaction, and structuring web-based and computational services.

    The book targets intermediate to advanced programmers interested in mastering the complexities of concurrent programming. Taking a design pattern approach, the book offers standard design techniques for creating and implementing components that solve common concurrent programming challenges. The numerous code examples throughout help clarify the subtleties of the concurrent programming concepts discussed.

    Customer Reviews:

    2 out of 5 stars 5 for knowledge; 0 for the writing -> 2.5 -> 2.......2006-04-19

    Sure he knows his stuff but doesn't have a clue on how to write. This is appallingly poorly written. It is one of the most ridiculously disorganized collections of academic 'verbage' (verbiage subsumes garbage) I have ever read. It's almost useless as a reference: its very non-linear (say non-deterministic almost) in concept elucidation (perhaps he's taken the notion of multithreading too much to heart and tried multi-threaded writing???). It's useless as a book to learn from- since learning by example is not just a way to learn, but the only way to learn (Einstein) and this book largely disavows examples.

    What it needs is another edition with a ghost writer. Seriously it's not good. Try Paul Hyde for a good intro to threads.

    While those at guru-ish level may love this book, those of us for whom threads represent a means to an end, not an end in and of themselves, would probably want to throw this book in frustration of the author's inability to structure a coherent sentence with a clear point. This meanders on like great uncle herb's war stories and is equally will sapping.

    Avoid if you can or check it out when you reach guru-ness. It's a good cure for insomnia though.

    3 out of 5 stars If you want to program concurency in Java you need this book.......2006-01-16

    This is a kind of book you'll need to start developing concurrent systems in Java. It shows details of what should be done to safely handle patterns for concurrent programs.
    I beleive this book is a must for every developer who want to start learning concurrency design priciples for Java.

    5 out of 5 stars Great Threaded Programming Information for More than Java.......2006-01-09

    This is the best book I have ever read on threading, and certainly applies well to other languages naturally (especially languages with a modern and mature thread library like Mono/.NET). Unlike other reviewers here, I encourage so-called "beginners" to read this book. He has plenty of examples so you will not get lost, and this *is* the right way to do things, so start with this one.

    5 out of 5 stars Will make you a better programmer, but not for beginners........2004-10-30

    This book is great but don't read it as your first introduction to Java threads.

    This book is not about Java threads per se, but more about design patterns and good object oriented programming practices as applied to concurrent programming (hence the title). Doug Lea is a university professor and this book has a very academic style, including a ton of references to an impressive array of concurrency and object oriented research. While this makes the material somewhat dense, it is very thorough and thankfully supplemented by actual code snippets (Doug Lea also makes significant contributions to the Java SDK and writes great code).

    Especially notable are the sections on semaphores and locking in general. Users of util.concurrent (which directly supplements this book), and even the new Java 5.0 concurrency utilities (which were written by Lea and company), will get tremendous value out of these chapters as the locking strategies form the backbone of the higher level classes found in those packages.

    For beginners, read "Java Thread Programming" by Paul Hyde, and then try this book.

    1 out of 5 stars "This is Phylosophy of concurrency"........2004-07-05

    This is not "concurrent programming".This is only "philosophy of concurrency".I think so too.
    Parallel Programming in OpenMP
    Average customer rating: 4 out of 5 stars
    • Great introduction
    • has many Fortran 77 but not Fortran 95 examples
    • Clear and concise
    Parallel Programming in OpenMP
    Rohit Chandra , Ramesh Menon , Leo Dagum , David Kohr , Dror Maydan , and Jeff McDonald
    Manufacturer: Morgan Kaufmann
    ProductGroup: Book
    Binding: Paperback

    Parallel ComputingParallel Computing | System Architecture | Hardware | Computers & Internet | Subjects | Books
    GeneralGeneral | System Architecture | Hardware | Computers & Internet | Subjects | Books
    GeneralGeneral | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Languages & Tools | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Software | Computers & Internet | Subjects | Books
    Look Inside Computer BooksLook Inside Computer Books | Trip | Specialty Stores | Books
    All Amazon UpgradeAll Amazon Upgrade | Amazon Upgrade | Stores | Books
    Computers & InternetComputers & Internet | Amazon Upgrade | Stores | Books
    Qualifying Textbooks - Spring 2007Qualifying Textbooks - Spring 2007 | Stores | Books
    GeneralGeneral | Software Books | Custom Stores | Stores | Software
    Similar Items:
    1. Parallel Programming in C with MPI and OpenMP
    2. Parallel Programming With MPI
    3. Patterns for Parallel Programming (Software Patterns Series)
    4. Using MPI - 2nd Edition: Portable Parallel Programming with the Message Passing Interface (Scientific and Engineering Computation)
    5. Parallel Scientific Computing in C++ and MPI: A Seamless Approach to Parallel Algorithms and their Implementation

    ASIN: 1558606718

    Amazon.com

    The OpenMP standard allows programmers to take advantage of new shared-memory multiprocessor systems from vendors like Compaq, Sun, HP, and SGI. Aimed at the working researcher or scientific C/C++ or Fortran programmer, Parallel Programming in OpenMP both explains what this standard is and how to use it to create software that takes full advantage of parallel computing.

    At its heart, OpenMP is remarkably simple. By adding a handful of compiler directives (or pragmas) in Fortran or C/C++, plus a few optional library calls, programmers can "parallelize" existing software without completely rewriting it. This book starts with simple examples of how to parallelize "loops"--iterative code that in scientific software might work with very large arrays. Sample code relies primarily on Fortran (undoubtedly the language of choice for high-end numerical software) with descriptions of the equivalent calls and strategies in C/C++. Each sample is thoroughly explained, and though the style in this book is occasionally dense, it does manage to give plenty of practical advice on how to make code run in parallel efficiently. The techniques explored include how to tweak the default parallelized directives for specific situations, how to use parallel regions (beyond simple loops), and the dos and don'ts of effective synchronization (with critical sections and barriers). The book finishes up with some excellent advice for how to cooperate with the cache mechanisms of today's OpenMP-compliant systems.

    Overall, Parallel Programming in OpenMP introduces the competent research programmer to a new vocabulary of idioms and techniques for parallelizing software using OpenMP. Of course, this standard will continue to be used primarily for academic or research computing, but now that OpenMP machines by major commercial vendors are available, even business users can benefit from this technology--for high-end forecasting and modeling, for instance. This book fills a useful niche by describing this powerful new development in parallel computing. --Richard Dragan

    <B>Topics covered:</B> <ul>

  • Overview of the OpenMP programming standard for shared-memory multiprocessors
  • Description of OpenMP parallel hardware
  • OpenMP directives for Fortran and pragmas for C/C++
  • Parallelizing simple loops
  • parallel do / parallel for directives
  • Shared and private scoping for thread variables
  • reduction operations
  • Data dependencies and how to remove them
  • OpenMP performance issues (sufficient work, balancing the load in loops, scheduling options)
  • Parallel regions
  • How to parallelize arbitrary blocks of code (master and slave threads, threadprivate directives and the copyin clause)
  • Parallel task queues
  • Dividing work based on thread numbers
  • Noniterative work sharing
  • Restrictions on work-sharing
  • Orphaning
  • Nested parallel regions
  • Controlling parallelism in OpenMP, including controlling the number of threads, dynamic threads, and OpenMP library calls for threads
  • OpenMP synchronization
  • Avoiding data races
  • Critical section directives (named and nested critical sections and the atomic directive
  • Runtime OpenMP library lock routines
  • Event synchronization (barrier directives and ordered sections)
  • Custom synchronization, including the flush directive
  • Programming tips for synchronization
  • Performance issues with OpenMP
  • Amdahl's Law
  • Load balancing for parallelized code
  • Hints for writing parallelized code that fits into processor caches
  • Avoiding false sharing
  • Synchronization hints
  • Performance issues for bus-based and Non-Uniform Memory Access (NUMA) machines
  • OpenMP quick reference</ul>

    Book Description


    The rapid and widespread acceptance of shared-memory multiprocessor architectures has created a pressing demand for an efficient way to program these systems. At the same time, developers of technical and scientific applications in industry and in government laboratories find they need to parallelize huge volumes of code in a portable fashion. OpenMP, developed jointly by several parallel computing vendors to address these issues, is an industry-wide standard for programming shared-memory and distributed shared-memory multiprocessors. It consists of a set of compiler directives and library routines that extend FORTRAN, C, and C++ codes to express shared-memory parallelism.


    Parallel Programming in OpenMP is the first book to teach both the novice and expert parallel programmers how to program using this new standard. The authors, who helped design and implement OpenMP while at SGI, bring a depth and breadth to the book as compiler writers, application developers, and performance engineers.

    * Designed so that expert parallel programmers can skip the opening chapters, which introduce parallel programming to novices, and jump right into the essentials of OpenMP.
    * Presents all the basic OpenMP constructs in FORTRAN, C, and C++.
    * Emphasizes practical concepts to address the concerns of real application developers.
    * Includes high quality example programs that illustrate concepts of parallel programming as well as all the constructs of OpenMP.
    * Serves as both an effective teaching text and a compact reference.
    * Includes end-of-chapter programming exercises.

    Customer Reviews:

    4 out of 5 stars Great introduction.......2006-11-09

    Chandra et al. have put together a readable, helpful introduction to parallel programming with OpenMP. Unlike its major competitor, MPI, OpenMP assumes a shared memory model, in which every processor has the same view of the same address space as every other. At least as a start, this cuts the intellectual load way down. The programmer adds just one concept to the problem, parallelism, without adding buffering, communication networks, and lots of other stuff as well.

    After two introductory chapters, the authors introduce OpenMP in three stages: loop parallelism, general parallelism, and synchronization, roughly in order of increasing complexity. The authors present the necessary OpenMP pragmas and APIs at each step, showing how they address the immediate problems. An appendix summarizes the pragmas and APIs, in both their C/C++ and Fortran forms. OO C++ programmers may be dismayed by the amount of attention paid to an un-cool language like Fortran, but need to realize that it's still the lingua franca of performance programming. And, in fairness, the authors spend equal time on C++ idiosyncrasies, such as constructor invocations for variables that are silently replicated in each of the parallel threads.

    If you've ever done performance programming, you're groaningly aware that getting the parallelism right is actually the easy part. The tricky parts come in breaking dependencies, in scheduling, in ensuring spatial and temporal locality, and in dealing with cache coherency issues of multiprocessors. The authors give great introductions to all of the basics. This includes a patient description of how caches actually work, since there's a new crop of beginners every day. The authors describe performance analysis tools, but only briefly. The tools differ so much between vendors and between one rev and the next, that any detailed description would be useless to most readers immediately and obsolete for all readers very soon.

    This won't turn a beginner into the guru of performance computing. It will, however, establish a working competence in one popular parallelization tool, OpenMP, and in the computing technologies that affect parallel performance.

    //wiredweird

    4 out of 5 stars has many Fortran 77 but not Fortran 95 examples.......2004-12-31

    This book has many examples of how to parallelize Fortran 77 programs with loops using OpenMP directives, but coverage of how to parallelize Fortran 95 code using array operations is sparse. For this, one should read the tutorial "Parallel Programming in Fortran 95 using OpenMP", by Miguel Hermanns, available at the OpenMP web site.

    4 out of 5 stars Clear and concise.......2002-05-13

    this is probably the first book about OMP. The author has decribed the uses of many functions and directives of OMP. The examples (in Fortran and C) given are also useful. Generally this is a good book to get you started off with OMP.
    The New Greek-English Interlinear New Testament (Personal Size)
    Average customer rating: 4.5 out of 5 stars
    • Barring a miracle....
    • An Excellent Interlinear To Own
    • Use with Liddel and Scott for best results.
    • Really Nice.
    • Very handy in Greek Class.
    The New Greek-English Interlinear New Testament (Personal Size)
    Robert K. Brown
    Manufacturer: Tyndale House Publishers
    ProductGroup: Book
    Binding: Hardcover

    Parallel EditionsParallel Editions | Formats | Bibles | Christianity | Religion & Spirituality | Subjects | Books
    New TestamentNew Testament | Bibles | Christianity | Religion & Spirituality | Subjects | Books
    New International Reader's VersionNew International Reader's Version | Translations | Bibles | Christianity | Religion & Spirituality | Subjects | Books
    GeneralGeneral | Reference | Christianity | Religion & Spirituality | Subjects | Books
    Language StudiesLanguage Studies | Reference | Christianity | Religion & Spirituality | Subjects | Books
    GeneralGeneral | Bible & Other Sacred Texts | Religion & Spirituality | Subjects | Books
    Look Inside Religion & Spirituality BooksLook Inside Religion & Spirituality Books | Trip | Specialty Stores | Books
    Similar Items:
    1. Word Study Greek-English New Testament
    2. Basics of Biblical Greek Workbook
    3. Basics of Biblical Greek Grammar
    4. The Greek New Testament: Bonded Leather
    5. Biblical Greek (Zondervan Get an A! Study Guides)

    ASIN: 0842345647

    Book Description

    The New Greek-English Interlinear New Testament contains a literal word-for-word English rendering of the Greek text in interlinear form. A parallel column of the New Revised Standard Version (NRSV) accompanies the interlinear text. Numerous textual notes are also included. The New Greek-English Interlinear New Testament is the newest interlinear translation that uses the UBS4/NA27 text.

    Customer Reviews:

    5 out of 5 stars Barring a miracle...........2007-05-18

    Barring a miracle like the Dead Sea Scrolls are for Old Testament studies, this text is essentially as close as we will ever come to the original text of the New Testament. There will be scholarly tweaking and dispute over particulat words and phrases, of course.

    You do not have to be able to read Greek in order to use this book for study, although that would obviously enrich your study. The other reviews here match my experience and I recommend reading them.

    What particular words mean will often depend upon the dictionary and concordance you use since historically these have frequently been written by people with a particular theological agenda. You need to be an advanced student a'la Raymond Brown to puzzle out biases and errors. This book, both the interlinear and the NRSV, pretty much steer you past those problems.

    To understand the general background of scholarly issues which led to this particular text you need to read Metzger's book The Text of the New Testament: Its Transmission, Corruption, and Restoration (4th Edition). To find out about specific textual issus which are still oustanding, you also need Metzger: A Textual Commentary on the Greek New Testament.

    With this book and the two by Metzger you can be as confident as the current state of the art permits that you are studying the "real" New Testament.

    5 out of 5 stars An Excellent Interlinear To Own.......2007-05-06

    Much of the time I have found interlinears to be too bulky to really enjoy. I must admit that I own several but would rather just pull out my Greek New Testament than to try to work through reading from an interlinear New Testament. However, I recently puchased this personal size interlinear from my local Christian bookstore and have truly enjoyed it. The book, as others have noted, is well crafted with a strong, sturdy cover, easy to read print, and while I have not been a big fan of the NRSV, I have found the text to be much more accurate than say the NIV.

    However, I must warn my readers that you need to know NT Greek before you purchase this book. A working knowledge of the Greek text is a must to really enjoy any interlinear New Testament. A few Greek language books along with this interlinear can provide the disciple with a life long search of the New Testament that will add to your faith. Overall this is a great book to own and one of the best (if not the best) interlinears that you can purchase.

    5 out of 5 stars Use with Liddel and Scott for best results. .......2007-04-29

    The New Testament is indoubtably an extremely important collection of books, just in terms of the influence it has had over human thought over the course of the past 2,000 years. This edition offers you a chance to look at it in its original language. Well, OK. You'll still need a basic Greek book and a lexicon if you want to actually read the Greek for yourself, but an interlinear edition such as this really makes everything a lot easier to parse and look at and helps you memorize grammatical forms by looking at them in context.

    Even if you're not particularly interested in the New Testament, this is still of great use to the beginning Greek student. Koine Greek is fairly straightforward in its grammar and sentence construction; the people who wrote this were not overly interested in proving their rhetorical prowess and wanted to get their message across in the simplest way possible. This simplicity makes for a good text to look at in depth before moving on to something a bit more complex. The price for this edition is substantially lower than that of Loeb Classical Library volumes, and you get more for it.

    4 out of 5 stars Really Nice........2007-04-05

    Well made, sturdy, lays flat.

    Printing is big and clear.

    I wish it wasn't NRSV, but it's not that big of a deal.

    I really wish that it had some sort of basic concordance of Greek words, but, again, for $16 it's already a great deal.

    I wish that the makers of this volume would make a Hebrew Old Testament as well. (With the Greek deuterocanonicals, Catholic here!!)

    5 out of 5 stars Very handy in Greek Class........2007-03-15

    If your university has the same book store supplier as mine, then you will have that little maroonish reddish Greek New Testament for class. The best part about this book, is it is the same size as that New Testament, and when you take the cover off, it is a pretty close match. So when everyone else is sitting in Greek class not going on because they can't read the language and their Bibles don't have English in them, you will be one step up.
    Best 16 dollars I ever spent.
    Breaking into Japanese Literature: Seven Modern Classics in Parallel Text
    Average customer rating: 5 out of 5 stars
    • wonderful storytelling and a fun study aide
    • Excellent book to build kanji and vocab recognition
    • Excellent japanese reader
    • simply brilliant
    • I absolutely adore this book
    Breaking into Japanese Literature: Seven Modern Classics in Parallel Text
    Giles Murray
    Manufacturer: Kodansha International
    ProductGroup: Book
    Binding: Paperback

    GeneralGeneral | Literature & Fiction | Subjects | Books | Classics | Comic | Contemporary | Literary
    AnthologiesAnthologies | Short Stories | Literature & Fiction | Subjects | Books
    JapaneseJapanese | Instruction | Foreign Languages | Reference | Subjects | Books
    Reading SkillsReading Skills | Words & Language | Reference | Subjects | Books
    GeneralGeneral | Reference | Subjects | Books
    Look Inside Fiction BooksLook Inside Fiction Books | Trip | Specialty Stores | Books
    Look Inside Nonfiction BooksLook Inside Nonfiction Books | Trip | Specialty Stores | Books
    Look Inside Reference BooksLook Inside Reference Books | Trip | Specialty Stores | Books
    Poetry & Short StoriesPoetry & Short Stories | Large Print | Formats | Books
    Similar Items:
    1. Read Real Japanese: All You Need to Enjoy Eight Contemporary Writers
    2. Basic Connections: Making Your Japanese Flow (Power Japanese Series) (Kodansha's Children's Classics)
    3. Making Sense of Japanese: What the Textbooks Don't Tell You (Power Japanese Series) (Kodansha's Children's Classics)
    4. All About Particles: A Handbook of Japanese Function Words (Power Japanese Series) (Kodansha's Children's Classics)
    5. Kodansha's Furigana Japanese Dictionary: Japanese-English English-Japanese

    ASIN: 4770028997

    Book Description

    Reading great books in the original should be the culmination of language study, but reading Japanese literature unassisted is a daunting task that can defeat even the most able of students. Breaking into Japanese Literature is specially designed to help you bypass all the frustration and actually enjoy classics of Japanese literature.

    Breaking into Japanese Literature features seven graded stories covering a variety of genres: whether it's the spellbinding surrealism of Natsume Soseki's Ten Nights of Dreams, the humor of Akutagawa Ryunosuke's fable of temple life ("The Nose"), or the excitement of his historic thrillers ("In a Grove" and "Rashomon"), you are sure to find a story that appeals to you in this collection.

    The unique layout -- with the original Japanese story in large print, an easy-to-follow English translation and a custom dictionary -- was created for maximum clarity and ease of use. There's no need to spend time consulting reference books when everything you need to know is right there in front of your nose.

    To make Japanese literature fun, Breaking into Japanese Literature also has some unique extra features: mini-biographies to tell you about the authors' lives and works, individual story prefaces to alert you to related works of literature or film, and original illustrations to fire your imagination. Best of all, MP3 sound files of all the stories have been made available for FREE on the Internet.

    Breaking into Japanese Literature provides all the backup you need to break through to a new and undiscovered world -- the world of great Japanese fiction. All the hard work has been taken care of so you can enjoy the pleasures of the mind. Why not take advantage?

    Learn <BR>* 50% of all common-use kanji covered <BR>* Kanji entry numbers given for follow-up study <BR>* Japanese + English translation + custom dictionary on the same page <BR>* Every single kanji word explained

    Listen <BR>* Free download of sound files from the Net

    Look <BR>* 7 original atmospheric illustrations

    Link <BR>* Original stories for Kurosawa's Rashomon and Dreams

    All the stories in this book are available on the Internet as MP3 sound files read by professional Japanese actors.

    For students who want to consolidate their understanding of kanji, the entry numbers for any of the 2,230 characters in The Kodansha Kanji Learner's Dictionary have been provided when those characters feature in Breaking into Japanese Literature. This makes cross-referencing a matter of seconds.

    Customer Reviews:

    5 out of 5 stars wonderful storytelling and a fun study aide.......2007-02-24

    Ive studied Nihongo for 2 months and only know 175 kanji but bought this anyway to motivate myself. As expected, it's beyond my reading level, but I was able to recognize some kanji and get a feel for how "real" Japanese differs from the exercises in my Genki text. I'll read the easiest story again in 6 months and again in 1 year to check my progress.

    The MP3 file for Soseki's "First Night" is a treat for the ears and while I only understand the 1st sentence ("I had a dream") I have a better grasp of proper Japanese pronunciation and pace --- unlike Pimsleur CDS which are artificially slow by necessity. In short, even if you're a rank beginner like me, I highly recommend buying this.

    5 out of 5 stars Excellent book to build kanji and vocab recognition.......2006-12-27

    I have only had a year and a half of Japanese, so I got this book to put myself to the test. It is excellent - every word is defined at the bottom of the pages so that a dictionary is not necessary, saving valuable time. The English on the right hand side reinforces an understanding of how Japanese sentence structures work. What's great is even if a word is defined on page 1, if it appears on the next page it is redefined at the bottom in case you forget it.

    It took me a while to be able to fluently read and understand the first three sentences but after that I could read new sentences much faster. I think this book may still be a bit above me as there are some basic words I have not learned yet, but thanks to the English on the right side I can figure it out with relative ease.

    The stories themselves are relatively interesting, and offer a variety of difficulty levels - the first third of the book is best suited for beginners, the second section is more intermediate, and the last section is more advanced.

    Aside from the Genki textbooks, this is my favorite Japanese book I own.

    5 out of 5 stars Excellent japanese reader.......2006-03-13

    The vocabulary list and the english translation make these japanese stories easy to read and also makes it possible to verify your understanding of the japanese texts. The soundfiles that can be downloaded from the internet make this a great listening exercise.

    5 out of 5 stars simply brilliant.......2005-10-17

    I love this book. Where else can you expand your vocabulary, learn and retain new kanji, and develop your reading skills, all while reading a truly kick-ass story? And believe me, the stories are great. You've got "Dreams", a sometimes macabre, sometimes funny exercise in surrealism. There's "In a Grove", a page-turner of a murder mystery. My favorite is "Rashomon", which surprised me with its black humor.

    I also love the fact that the book is so compact. You can read it on the train (as I do) without announcing to the world that that you're another gaijin trying to learn Japanese. This is a tool whose value far outweighs its price.

    5 out of 5 stars I absolutely adore this book.......2005-08-06

    This book went beyond my expectations. First of all, let me say that you will never get frustrated while reading this. All the information you need is right there, including definitions of the words, furigana, and the english translation. It is also nice that they place the english on the right side of the book while the japanese is on the left, which makes it easier not to cheat while reading but still keeps the english conveniently close. The words' definitions are on the bottom of the page, which makes them easy to find so you don't have to go looking up words in a dictionary or in the back.

    Another extremely useful aspect is the kanji listing number. This is in conjunction with The Kodansha Kanji Learner's Dictionary. Beside the kanji listed underneath the text is a number in brackets which indicates the number in the Kanji Learner's Dictionary so you can easily look up the kanji. It is really quite convenient.

    The overall stories are also fascinating and not at all childish as one might imagine. They are twisted and mysterious, and hold your interest easily. Yet they are short enough to reduce any feelings of boredom or fatigue you might feel from the effort of reading the text. As mentioned, the stories begin short and easy and progress into longer, more complicated text. Beautiful, laudable choices for study.

    Finally, the ability to download the mp3s of the spoken text draws a blissful sigh of contentment from me. Not only can you practice reading it, but listening as well. So your pronunciation does not suffer and you can improve your speaking skills.

    There is nothing they could add to this book to make it any better than it already is. Buy this book and prepare to feel satisfied beyond what you expected.

    Programming Book:

    1. Pascal
    2. Perl
    3. PostScript
    4. PowerBuilder
    5. Prograph
    6. Prolog
    7. Python
    8. Rexx
    9. RPG
    10. Ruby

    Programming Book

    Programming Book