High Performance Computing
High Performance Computing
131 Visitas | 175 Descargas | 2014-02-27 22:38:30 | mmartin
Descripción
This book is a "must" for anyone who needs to worry about computer performance, either as a software developer or as a buyer. But it also provides valuable insights for those among us who do relatively little programming and run mostly third-party application software. Even if you never touch a line of code, High Performance Computing will give you a feel for how the most recent generation of computer hardware works. If you work with computers, you owe it to yourself to understand the new directions that workstation architecture has taken in the last half decade, including RISC-based workstation architectures like DEC Alpha/AXP, the IBM RS/6000 and the HP 9000/700 series.This book covers everything, from the basics of modern workstation architecture, to structuring benchmarks, to...
Data Structures and Algorithms in Python
Data Structures and Algorithms in Python
347 Visitas | 488 Descargas | 2013-09-17 12:57:01 | dpr
Descripción
The design and analysis of efficient data structures has long been recognized as a vital subject in computing and is part of the core curriculum of computer science and computer engineering undergraduate degrees. Data Structures and Algorithms in Python provides an introduction to data structures and algorithms, including their design, analysis, and implementation. This book is designed for use in a beginning level data structures course, or in an intermediate-level introduction to algorithms course....
PhoneGap Essentials
PhoneGap
181 Visitas | 918 Descargas | 2013-09-23 17:30:56 | ybpadron
Descripción
This book focuses on how to develop mobile applications using PhoneGap, which is a popular open source toolkit for building hybrid applications. You investigate the extensive PhoneGap API and learn how to include many of the device features in your applications. It will become apparent that PhoneGap delivers on the promise of a simplified, cross-platform mobile development by enabling you to write your application using web technologies and then packaging it up so that it can be distributed throughout the various app stores and markets. With any luck, your application may even become someone’s favorite app....
Bison the Yacc Compatible Parser Generator
165 Visitas | 120 Descargas | 2013-12-16 20:14:03 | epcosta
Descripción
Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. As an experimental feature, Bison can also generate IELR(1) or canonical LR(1) parser tables. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages. Bison is upward compatible with Yacc: all properly-written Yacc grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with little trouble. You need to be fluent in C or C++ programming in order to use Bison or to understand this manual. Java is also supported as an experimental feature....