Memory Warp


Book Description

In Memory Warp, Mark Pendergrast sounds a clarion call to stop the ongoing pseudoscience of “repressed memory therapy,” which has destroyed millions of families and continues to do so. In the 1990s, Pendergrast’s book Victims of Memory helped to debunk the repressed memory craze. Now, more than two decades later, he revisits the subject and proves that this form of “therapy” is still widespread, still destroying family relationships and causing false allegations of terrible crimes against innocent parents and caregivers. With meticulous research and captivating writing, Pendergrast brings coverage of this issue up to date.




Time Warped


Book Description

We are obsessed with time. However hard we might try, it is almost impossible to spend even one day without the marker of a clock. But how much do we understand about time, and is it possible to retrain our brains and improve our relationship with it? Drawing on the latest research from the fields of psychology, neuroscience, and biology, and using original research on the way memory shapes our understanding of time, acclaimed writer and broadcaster Claudia Hammond delves into the mysteries of time perception. Along the way, she introduces us to an extraordinary array of colourful characters willing to go to great lengths in the interests of research, such as the French speleologist Michel, who spends two months in an ice cave in complete darkness. Time Warped shows us how to manage our time more efficiently, speed time up and slow it down at will, plan for the future with more accuracy, and, ultimately, use the warping of time to our own advantage.




Parallel Computing


Book Description

From Multicores and GPUs to Petascale. Parallel computing technologies have brought dramatic changes to mainstream computing the majority of todays PCs, laptops and even notebooks incorporate multiprocessor chips with up to four processors. Standard components are increasingly combined with GPUs Graphics Processing Unit, originally designed for high-speed graphics processing, and FPGAs Free Programmable Gate Array to build parallel computers with a wide spectrum of high-speed processing functions. The scale of this powerful hardware is limited only by factors such as energy consumption and thermal control. However, in addition to"




Web and Big Data


Book Description

This two-volume set, LNCS 11317 and 12318, constitutes the thoroughly refereed proceedings of the 4th International Joint Conference, APWeb-WAIM 2020, held in Tianjin, China, in September 2020. Due to the COVID-19 pandemic the conference was organizedas a fully online conference. The 42 full papers presented together with 17 short papers, and 6 demonstration papers were carefully reviewed and selected from 180 submissions. The papers are organized around the following topics: Big Data Analytics; Graph Data and Social Networks; Knowledge Graph; Recommender Systems; Information Extraction and Retrieval; Machine Learning; Blockchain; Data Mining; Text Analysis and Mining; Spatial, Temporal and Multimedia Databases; Database Systems; and Demo.




The Memory Illusion


Book Description

THE INTERNATIONAL BESTSELLER 'Truly fascinating.' Steve Wright, BBC Radio 2 - Have you ever forgotten the name of someone you’ve met dozens of times? - Or discovered that your memory of an important event was completely different from everyone else’s? - Or vividly recalled being in a particular place at a particular time, only to discover later that you couldn’t possibly have been? We rely on our memories every day of our lives. They make us who we are. And yet the truth is, they are far from being the accurate record of the past we like to think they are. In The Memory Illusion, forensic psychologist and memory expert Dr Julia Shaw draws on the latest research to show why our memories so often play tricks on us – and how, if we understand their fallibility, we can actually improve their accuracy. The result is an exploration of our minds that both fascinating and unnerving, and that will make you question how much you can ever truly know about yourself. Think you have a good memory? Think again. 'A spryly paced, fun, sometimes frightening exploration of how we remember – and why everyone remembers things that never truly happened.' Pacific Standard




Information Security and Privacy


Book Description

This book constitutes the refereed proceedings of the 25th Australasian Conference on Information Security and Privacy, ACISP 2020, held in Perth, WA, Australia, in November 2020*. The 31 revised full papers and 5 short papers presented were carefully revised and selected from 151 submissions. The papers present and discuss the latest research, trends, breakthroughs, and challenges in the domain of information security, privacy and cybersecurity on a variety of topics such as post-quantum cryptography; symmetric cipher; signature; network security and blockchain; cryptographic primitives; mathematical foundation; machine learning security, among others. *The conference was held virtually due to COVID-19 pandemic.




Professional CUDA C Programming


Book Description

Break into the powerful world of parallel GPU programming with this down-to-earth, practical guide Designed for professionals across multiple industrial sectors, Professional CUDA C Programming presents CUDA -- a parallel computing platform and programming model designed to ease the development of GPU programming -- fundamentals in an easy-to-follow format, and teaches readers how to think in parallel and implement parallel algorithms on GPUs. Each chapter covers a specific topic, and includes workable examples that demonstrate the development process, allowing readers to explore both the "hard" and "soft" aspects of GPU programming. Computing architectures are experiencing a fundamental shift toward scalable parallel computing motivated by application requirements in industry and science. This book demonstrates the challenges of efficiently utilizing compute resources at peak performance, presents modern techniques for tackling these challenges, while increasing accessibility for professionals who are not necessarily parallel programming experts. The CUDA programming model and tools empower developers to write high-performance applications on a scalable, parallel computing platform: the GPU. However, CUDA itself can be difficult to learn without extensive programming experience. Recognized CUDA authorities John Cheng, Max Grossman, and Ty McKercher guide readers through essential GPU programming skills and best practices in Professional CUDA C Programming, including: CUDA Programming Model GPU Execution Model GPU Memory model Streams, Event and Concurrency Multi-GPU Programming CUDA Domain-Specific Libraries Profiling and Performance Tuning The book makes complex CUDA concepts easy to understand for anyone with knowledge of basic software development with exercises designed to be both readable and high-performance. For the professional seeking entrance to parallel computing and the high-performance computing community, Professional CUDA C Programming is an invaluable resource, with the most current information available on the market.




Introduction to High Performance Scientific Computing


Book Description

Based on a course developed by the author, Introduction to High Performance Scientific Computing introduces methods for adding parallelism to numerical methods for solving differential equations. It contains exercises and programming projects that facilitate learning as well as examples and discussions based on the C programming language, with additional comments for those already familiar with C++. The text provides an overview of concepts and algorithmic techniques for modern scientific computing and is divided into six self-contained parts that can be assembled in any order to create an introductory course using available computer hardware. Part I introduces the C programming language for those not already familiar with programming in a compiled language. Part II describes parallelism on shared memory architectures using OpenMP. Part III details parallelism on computer clusters using MPI for coordinating a computation. Part IV demonstrates the use of graphical programming units (GPUs) to solve problems using the CUDA language for NVIDIA graphics cards. Part V addresses programming on GPUs for non-NVIDIA graphics cards using the OpenCL framework. Finally, Part VI contains a brief discussion of numerical methods and applications, giving the reader an opportunity to test the methods on typical computing problems.




Programming Your GPU with OpenMP


Book Description

The essential guide for writing portable, parallel programs for GPUs using the OpenMP programming model. Today’s computers are complex, multi-architecture systems: multiple cores in a shared address space, graphics processing units (GPUs), and specialized accelerators. To get the most from these systems, programs must use all these different processors. In Programming Your GPU with OpenMP, Tom Deakin and Timothy Mattson help everyone, from beginners to advanced programmers, learn how to use OpenMP to program a GPU using just a few directives and runtime functions. Then programmers can go further to maximize performance by using CPUs and GPUs in parallel—true heterogeneous programming. And since OpenMP is a portable API, the programs will run on almost any system. Programming Your GPU with OpenMP shares best practices for writing performance portable programs. Key features include: The most up-to-date APIs for programming GPUs with OpenMP with concepts that transfer to other approaches for GPU programming. Written in a tutorial style that embraces active learning, so that readers can make immediate use of what they learn via provided source code. Builds the OpenMP GPU Common Core to get programmers to serious production-level GPU programming as fast as possible. Additional features: A reference guide at the end of the book covering all relevant parts of OpenMP 5.2. An online repository containing source code for the example programs from the book—provided in all languages currently supported by OpenMP: C, C++, and Fortran. Tutorial videos and lecture slides.




Evolutionary Computation in Combinatorial Optimization


Book Description

This book constitutes the refereed proceedings of the 10th European Conference on Evolutionary Computation in Combinatorial Optimization, EvoCOP 2010, held in Instanbul, Turkey, in April 2010. The 24 revised full papers presented were carefully reviewed an selected from 69 submissions. The papers present the latest research and discuss current developments and applications in metaheuristics - a paradigm to effectively solve difficult combinatorial optimization problems appearing in various industrial, economical, and scientific domains. Prominent examples of metaheuristics are evolutionary algorithms, simulated annealing, tabu search, scatter search, memetic algorithms, variable neighborhood search, iterated local search, greedy radomized adaptive search procedures, estimation of distribution algorithms and ant colony opitmization.