VISUAL ENVIRONMENT WITH HIGH RESOLUTION TILED DISPLAY AND PC RENDERING CLUSTER
|
|
|
- Barnard Hodge
- 10 years ago
- Views:
Transcription
1 No. 248 September 2004 VISUAL ENVIRONMENT WITH HIGH RESOLUTION TILED DISPLAY AND PC RENDERING CLUSTER Dinesh M. Sarode, S.K. Bose, P.P.K. Venkata Soumen Dey and P.S. Dhekne, Computer Division Introduction Today we can have huge datasets resulting from computer simulations (CFD, physics, chemistry, etc) and sensor measurements (medical, seismic and satellite). There is an exponential growth in computational requirements in scientific research. Modern parallel computers are providing the required computational power for the simulation runs and efficient visualization is essential in interpreting the large, dynamic data generated from these simulation runs. The visualization process maps these data sets on to graphical representations and then generates the pixel representation. The large number of pixels show the picture in greater detail and interaction with it enables greater insight on the part of user in understanding the data and picking out small anomalies that could turn out to be critical. However, the memory constraints, lack of the rendering power and the display resolution offered by even the most powerful graphics workstation make the visualization of this magnitude difficult or impossible. All over the world, tightly coupled multi processor multi pipe graphics supercomputers are used for large-scale data visualization. The number of graphics accelerator cards that can fit in the system and the high cost involved are the limitations of this approach. N E W S L E T T E R C o n t e n t s 1. Visual environment with high resolution tiled display and PC rendering cluster 1 2. Development of advanced alarm annunciation system for nuclear reactors 9 3. Optical technique for high speed measurement BARC transfers technology of "Lascan Dia Gauge" National workshop on radiochemistry and applications of radioisotopes Safety training programme at BARC facilities at Kalpakkam National Symposium on Environment (NSE-13) Nuclear and Radiochemistry Symposium (NUCAR 2005) Workshop on minimisation of radioactive solid waste ž.œ.. ˆ½ ÅÍ ˆ½Å ¾± ¹ ˆÅ ½ ˆÅ ½ ŸŸ / BARC scientists honoured 23
2 While the cost-performance ratio for the component based on semiconductor technology doubles in every 18 months, or beyond that for graphics accelerator cards, the display resolution is lagging far behind. The resolutions of the displays have been increasing at an annual rate of 5% for the last two decades. The ability to scale the components of computing CPU, memory, graphics accelerator and displays by combining them is the most cost-effective way to meet the ever-increasing demand for computational power, rendering rate and high resolution. The high resolution tiled display and rendering cluster initiative at Computer Division, BARC, explore means to build and use a scalable display system by tiling multiple LCD displays driven by the Linux-based PC graphicsrendering cluster. Off-the-shelf components such as PCs, PC graphics accelerators, network components and LCD displays are used. This article focuses on building such a system that can render and drive over 20 million pixels, using the open source software framework that allows running existing graphics (OpenGL) as well as non-graphics (X11) applications at interactive speed. Tiled display-aware applications requiring higher intrinsic display resolution and more display space have been developed. System Architecture 3Dlabs GVX1 pro AGP graphics accelerator cards. Communication between them is handled over the Fast Ethernet. The display is constructed from 2 x 2 LCD displays. A picture of the cluster and display system is shown in Fig. 1. Fig.1: 2x2 Tiled display system In September 2003, we scaled the display by constructing 16-tiles from 4 x 4 17 ViewSonic LCD display and cluster of 17 (16+1) workstations running Red Hat 7.2. Fig. 2 shows the current high-resolution display system. The resolution of our new system is 5120x4096 (20 million) pixels. In our scaling efforts, we used two commodity interconnects: Gigabit Ethernet for graphics related communication and Fast Ethernet for file sharing etc. In our architecture, a display is constructed by tiling the LCD displays. A single workstation drives a single display; software environment controls the rendering of the portion of the graphics apportioned to that display. A separate workstation of the cluster is used to control the entire tiled display. In March 2003, we designed the first 4-tile LCD display system that provides a display resolution of 2048 x 1536 (3.1 million) pixels. Each tile is 15 ViewSonic display with maximum resolution of 1024x768. A PC Linux cluster of five workstations running Red Hat 7.2 is used to drive the display system. The workstations are Intel P-IV 1.7 Ghz processor, 256 MB RDRAM and Fig. 2: 4x4 Tiled display system The commodity projectors can also be used for seamless tiled display. The projectors are costly as compared to LCD monitors and they are hard
3 to align. The brightness, color coordination, balance and edge blending also need to be addressed. Because of these issues, we decided to use LCD monitors for tiled display. However, the borders of the LCD displays (seams) provide a grid-like pattern etched through the logical display, in which nothing can be displayed. The seams introduce issues while visualizing the data. Our software environment treats the borders as if represented by hidden pixels, thereby creating the panned window effect. Software Environment for Tiled Display Moving the visualization applications to PC rendering cluster and tiled display makes software environment much more complex than the traditional shared memory multi-processor multi-pipe systems. In these systems the application data uses the shared memory, enabling the graphics and computations to easily access data and process it. In the PC rendering cluster, since there is no single place to share the data, the programmer must know the cluster configuration and provide ways to effectively share data through interconnecting network Finally, the tiled display environment must fulfill three functional requirements: genlock, swaplock and datalock. Genlock synchronizes the video frames from each node of the cluster so that final image presented is coherent image. It is critical for active stereo on tiled display. Each graphics card in a cluster renders different number of polygons resulting in different rendering times for each frame. Swaplock ensures that the frame buffers swaps are synchronized. Datalock further ensures the synchronization of the views to maintain consistency across the tiles. We have not used any explicit genlock for tiled display whereas swaplock and datalock have been implemented in the software. The basic two approaches for software architecture for PC rendering cluster and tiled display are: Client/Server and Synchronized program execution. In the Client/Server, single instance of the application (client) serves data to the graphics rendering servers. This is usually transparent because the program can be implemented as if it runs on a single node. The software system will handle the necessary changes for running the program on PC cluster. The disadvantage is higher consumption of network bandwidth. With the Synchronized program execution approach, multiple instances of the applications execute on the cluster nodes. The execution of the application on all nodes must be synchronized to insure consistency among all application instances. Typically, the master node handles all user interaction and synchronizes state changes between the slaves. The advantage is the less consumption of network bandwidth. With aim to support existing applications along with available open source software for running them on the tiled display, we selected Chromium and DMX software environment. These software environment implements Client/Server approach. Chromium is used for running OpenGL based graphics applications while non-graphics applications (X) use DMX (Distributed Multihead X). Distributed Rendering The rendering pipeline consists of three conceptual stages: geometry database (graphics primitives), geometry processing (transformation, clipping, lighting etc) and rasterization (scanconversion, shading and visibility). The graphics accelerator cards of the cluster provide multiple rendering pipelines. The decision to split up and recombine the rendering workload can happen before or after either of the geometry processing or rasterization stage. Thus we can have sortfirst, sort-middle, and sort-last architectures for distributed rendering. The sort-first architecture distributes the graphics primitives early in the rendering pipeline (geometry processing) to the rendering node that
4 can do the remaining work. This is achieved by dividing the display into disjoint regions and making rendering nodes responsible for all rendering calculations that affect their respective screen regions. The screen-space bounding box of the primitive determines the regions into which it falls. The primitives are then distributed over an interconnect network to the appropriate rendering nodes. In sort-middle, primitives are distributed arbitrarily to geometry processing units and then screen space primitives are redistributed in the middle of the rendering pipeline to the appropriate rasterizer responsible for a portion of the display screen. The sort-last architecture assigns arbitrary subsets of the primitives to the rendering nodes which rasterize into pixels values no matter where they fall in the screen. The rendering nodes then transmit these pixels over an interconnect network to compositing nodes which resolve the visibility of the pixels according to the alpha or Z-buffer entries of the pixels. In short, the partial images are rendered in parallel and in the end combined according to their Z-buffer values. The main advantages of sort-first architecture are relatively less communication requirements; it can deal well with both large number of primitives and large number of pixels. The disadvantages are extra work for finding primitive-tile overlap for each frame, limited scalability and load imbalance. The sort-last approach is scalable but requires an image composition network with very high bandwidth. The desired resolution and quality of the output image also directly affects the communication bandwidth. The sort-middle approach is very difficult in a cluster-of-pcs system; we can not break the rendering pipeline as it is implemented in hardware. We selected the sort-first approach for high-resolution graphics system. Chromium Chromium is a flexible framework for distributedrendering on cluster of computers, initiated at Stanford University and supported by the Lawrence Livermore, Sandia, and Los Alamos National Labs and IBM Research. It provides a generic and extensible mechanism for manipulating streams of OpenGL (industry standard graphics) API commands. Hence, existing applications can take advantage of the rendering capability of a cluster, without modifying, or even recompiling the source code. Chromium implements sort-first, sort-last and hybrid algorithms to distribute the rendering of polygonal geometry across the cluster. It works by replacing the native OpenGL library with its own. It directly operates on the stream of the OpenGL graphics commands issued by the application. It provides Stream Processing Units (SPU). Each SPU has its input-streams of graphics commands, performs some operation on these commands and passes them on. SPUs can be chained to perform combined operations. The SPUs for tiled rendering are tilesort, render and pack. Tilesort SPU implements the sort-first algorithm. The tilesort SPU sorts the OpenGL commands into tiles so that they are packed and sent over a network to the nodes handling the tiles. Render SPU passes the stream to the node s local OpenGL implementation. Pack SPU packs the stream into a buffer for transmission to cluster servers. A python script called mothership controls running programs through Chromium. It contains the tile layout, SPU chains and nodes used for running the application. The mothership runs an event loop waiting for communication from the crappfakers and crservers. The crappfaker will run the OpenGL program and relink it against the defined SPU libraries. The crserver is used for tiled rendering and any SPU that requires network access for data transmission. Crserver sits on a socket and waits for packed OpenGL commands. Fig. 3 shows the sort-first configuration used by our PC cluster.
5 Fig. 3: Sort-first configuration DMX (Distributed Multihead X) DMX is an open source framework, distributing X Window sessions across the nodes of a tiled display such that the X display/desktop can span many individual tiles. It is used to run any program that runs under X Windows on the tiled display. The program can use the entire display space and resolution offered by the tiled display. It works by providing a front-end X server acting as a proxy to a number of back-end X servers running on the nodes of the cluster driving tiled display. X clients will connect to front-end X server running on the control node of the tiled display. Rendering and input requests will be accepted by the front-end server and then will be sent appropriately to back-end servers. Fig. 4: X session on tiled display
6 Applications Many application domains would benefit from the system. The tiled display-aware applications available for visualization, display of images and animations currently include: CollabCAD CollabCAD is a java based distributed 2D&3D CAD/CAM and CAE software system being developed by the Computer Aided Design Group of National Informatics Centre, New Delhi. We have augmented the display capabilities of CollabCAD with the tiled display environment setup in BARC, which is extremely useful for visualizing huge CAD models. It provides detailed view of the individual components of the model We are developing visualization applications for CFD and medical data sets. The visualization of CFD datasets is a powerful tool for problem solving, engineering design and communication of results to decision-makers. CFD visualizations with high-resolution grid will enhance the quality of the visual information. In the field of medical imaging, which is moving from films to digital images, the high-resolution visualization is an absolute need. With this new display technology, it is possible to see the very fine detail of important areas, such as a tumor in the brain, while at the same time seeing the overall context of the entire head. A number of high-resolution slices can be displayed together for analysis. Interacting with large CFD data sets in real time and providing rich and deep visual feedback is achieved only with rendering cluster and tiled display. This system also provides the cost Fig. 5: CollabCAD on tiled display and as well as overall interrelationships often required for design reviews. Fig 5 shows one such model. Fig. 6: High-resolution visualization of multiple data sets VTK (Visualization ToolKit) VTK is an open source software system for 3D computer graphics and visualization. VTK supports a wide variety of visualization algorithms including scalar, vector, tensor, texture and volumetric methods. The advanced modeling techniques such as implicit modeling, polygon reduction, mesh smoothing; cutting, contouring and triangulation are also supported. We decided to use VTK for our high-end scientific applications running on the rendering cluster and presenting the high-resolution visual information on the tiled display. Fig.7: Postprocessor for CFD applications (scalar plot) effective and scalable solution in visualizing the complex data sets generated by medical scanners. Interactive visualization in real time
7 with these datasets provides a wealth of information about internal structures, which lacks in static images. Fig. 8: Volume rendering (isosurfaces) Open source softwares like ParaView and VisIt based on VTK, specifically developed for parallel interactive visualization of large data sets, are also available. VMD Fig.9: Volume rendering (ray casting) VMD is an open source molecular visualization program for displaying, animating, and analyzing large biomolecular systems. It is used with our tiled display for high-resolution visualization of complex molecule structures. Fig.10: Complex molecule visualization with VMD on tiled display Tiled MPEG/AVI movie player The MPEG/AVI movie is a powerful way of visualizing complex data. The tiled movie player developed by Computer Division, BARC, plays the MPEG/AVI movie at the native resolution of the tiled display. It is an MPI (Message Passing Interface) application where the master reads the MPEG/AVI file, decodes it and divides the frame into tiles. Tiles are sent to the slave running on nodes of the tiled display, which uses interpolation for mapping it to the entire display resolution. The frames of the movie are rendered using OpenGL texture functionality.
8 Fig. 13: High resolution map on tiled display Conclusion Fig.11: Movie player on Tiled Display Tiled Image Viewer It is useful for viewing high-resolution images. The typical display does not have sufficient resolution, requiring scrolling or image shrinking which results in loss of context and lack of details. Fig 12: Image viewer on tiled display The PC rendering cluster and high-resolution tiled display is a reasonable alternative to highend multiprocessor, multipipe systems. The advantages are low cost and technology tracking: commodity components have better price/performance ratio and improve at faster rate than proprietary hardware. The large field of view (FOV) coupled with 20 times more pixels than the standard display provides the deep and rich visual experience. We found that the approach is scalable, works well with various computing and display configurations. Many visual-intensive applications would benefit from it. The visualization power that is available now also compliments the computational power of BARC s ANUPAM supercomputer. References 1. "Building and Using A Scalable Display Wall System", Kai Li, Han Chen, Yuqun Chen, Douglas W. Clark, Perry Cook, Stefanos Damianakis, Georg Essl, Adam Finkelstein, Thomas Funkhouser, Timothy Housel, Allison Klein, Zhiyan Liu, Emil Praun, Rudrajit Samanta, Ben Shedd, Jaswinder Pal Singh, George Tzanetakis, Jiannan Zheng, IEEE Computer Graphics and Applications, July/August "Visualization Research with Large Displays", Bin Wei, Claudio Silva, Eleftherios Koutsofios, Shankar Krishnan and Stephen North, IEEE Computer Graphics and Applications, July/August 2000
9 3. "Commodity Clusters for Immersive Projection Environments", Course Notes 47, SIGGRAPH "Software Environments for Cluster-based Display Systems", Yuqun Chen, Han Chen, Douglas W. Clark, Zhiyan Liu, Grant Wallace and Kai Li., Proceedings of the 1st International Symposium on Cluster Computing and the Grid, "Deep View: High-Resolution Reality", J. T. Klosowski, P. D. Kirchner, J. Valuyeva, G. Abram, C. J. Morris, R. H. Wolfe, and T. Jackman, IEEE Computer Graphics and Applications, May/June "Chromium: A Stream Processing Framework for Interactive Rendering on Clusters of Workstations", Greg Humphreys, Mike Houston, Ren Ng, Randall Frank, Sean Ahern, Peter Kirchner and James T. Klosowski, Computer Graphics, SIGGRAPH 2002 Proceedings 7. "A Sorting Classification of Parallel Rendering", S Molnar, Michael Cox, David Ellsworth and Henry Funchs, IEEE Computer Graphics and Applications, DMX Homepage 9. CollabCAD Homepage VTK Homepage ParaView Homepage VisIt Homepage VMD Homepage
Parallel Visualization for GIS Applications
Parallel Visualization for GIS Applications Alexandre Sorokine, Jamison Daniel, Cheng Liu Oak Ridge National Laboratory, Geographic Information Science & Technology, PO Box 2008 MS 6017, Oak Ridge National
The Design and Implement of Ultra-scale Data Parallel. In-situ Visualization System
The Design and Implement of Ultra-scale Data Parallel In-situ Visualization System Liu Ning [email protected] Gao Guoxian [email protected] Zhang Yingping [email protected] Zhu Dengming [email protected]
How To Share Rendering Load In A Computer Graphics System
Bottlenecks in Distributed Real-Time Visualization of Huge Data on Heterogeneous Systems Gökçe Yıldırım Kalkan Simsoft Bilg. Tekn. Ltd. Şti. Ankara, Turkey Email: [email protected] Veysi İşler Dept.
Parallel Analysis and Visualization on Cray Compute Node Linux
Parallel Analysis and Visualization on Cray Compute Node Linux David Pugmire, Oak Ridge National Laboratory and Hank Childs, Lawrence Livermore National Laboratory and Sean Ahern, Oak Ridge National Laboratory
Stream Processing on GPUs Using Distributed Multimedia Middleware
Stream Processing on GPUs Using Distributed Multimedia Middleware Michael Repplinger 1,2, and Philipp Slusallek 1,2 1 Computer Graphics Lab, Saarland University, Saarbrücken, Germany 2 German Research
NVIDIA IndeX Enabling Interactive and Scalable Visualization for Large Data Marc Nienhaus, NVIDIA IndeX Engineering Manager and Chief Architect
SIGGRAPH 2013 Shaping the Future of Visual Computing NVIDIA IndeX Enabling Interactive and Scalable Visualization for Large Data Marc Nienhaus, NVIDIA IndeX Engineering Manager and Chief Architect NVIDIA
IBM Deep Computing Visualization Offering
P - 271 IBM Deep Computing Visualization Offering Parijat Sharma, Infrastructure Solution Architect, IBM India Pvt Ltd. email: [email protected] Summary Deep Computing Visualization in Oil & Gas
Lecture Notes, CEng 477
Computer Graphics Hardware and Software Lecture Notes, CEng 477 What is Computer Graphics? Different things in different contexts: pictures, scenes that are generated by a computer. tools used to make
PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN
1 PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN Introduction What is cluster computing? Classification of Cluster Computing Technologies: Beowulf cluster Construction
Remote Graphical Visualization of Large Interactive Spatial Data
Remote Graphical Visualization of Large Interactive Spatial Data ComplexHPC Spring School 2011 International ComplexHPC Challenge Cristinel Mihai Mocan Computer Science Department Technical University
Petascale Visualization: Approaches and Initial Results
Petascale Visualization: Approaches and Initial Results James Ahrens Li-Ta Lo, Boonthanome Nouanesengsy, John Patchett, Allen McPherson Los Alamos National Laboratory LA-UR- 08-07337 Operated by Los Alamos
How is EnSight Uniquely Suited to FLOW-3D Data?
How is EnSight Uniquely Suited to FLOW-3D Data? July 5, 2011 figure 1. FLOW-3D model of Dam visualized with EnSight If you would like to know how CEI s EnSight offers you more power than other postprocessors
Equalizer. Parallel OpenGL Application Framework. Stefan Eilemann, Eyescale Software GmbH
Equalizer Parallel OpenGL Application Framework Stefan Eilemann, Eyescale Software GmbH Outline Overview High-Performance Visualization Equalizer Competitive Environment Equalizer Features Scalability
Facts about Visualization Pipelines, applicable to VisIt and ParaView
Facts about Visualization Pipelines, applicable to VisIt and ParaView March 2013 Jean M. Favre, CSCS Agenda Visualization pipelines Motivation by examples VTK Data Streaming Visualization Pipelines: Introduction
Comp 410/510. Computer Graphics Spring 2016. Introduction to Graphics Systems
Comp 410/510 Computer Graphics Spring 2016 Introduction to Graphics Systems Computer Graphics Computer graphics deals with all aspects of creating images with a computer Hardware (PC with graphics card)
Scalability and Classifications
Scalability and Classifications 1 Types of Parallel Computers MIMD and SIMD classifications shared and distributed memory multicomputers distributed shared memory computers 2 Network Topologies static
Overview Motivation and applications Challenges. Dynamic Volume Computation and Visualization on the GPU. GPU feature requests Conclusions
Module 4: Beyond Static Scalar Fields Dynamic Volume Computation and Visualization on the GPU Visualization and Computer Graphics Group University of California, Davis Overview Motivation and applications
Remote Visualization and Collaborative Design for CAE Applications
Remote Visualization and Collaborative Design for CAE Applications Giorgio Richelli [email protected] http://www.ibm.com/servers/hpc http://www.ibm.com/servers/deepcomputing http://www.ibm.com/servers/deepcomputing/visualization
Computer Graphics Hardware An Overview
Computer Graphics Hardware An Overview Graphics System Monitor Input devices CPU/Memory GPU Raster Graphics System Raster: An array of picture elements Based on raster-scan TV technology The screen (and
Computer Graphics. Computer graphics deals with all aspects of creating images with a computer
Computer Graphics Computer graphics deals with all aspects of creating images with a computer Hardware Software Applications Computer graphics is using computers to generate and display images based on
XDS-1000. Multi-windowing display management system
XDS-1000 Multi-windowing display management system The powerful XDS-1000 manages multi-channel, high-resolution display walls easily with keyboard and mouse. On its integrated Windows XP desktop, it seamlessly
REMOTE RENDERING OF COMPUTER GAMES
REMOTE RENDERING OF COMPUTER GAMES Peter Eisert, Philipp Fechteler Fraunhofer Institute for Telecommunications, Einsteinufer 37, D-10587 Berlin, Germany [email protected], [email protected]
CHAPTER FIVE RESULT ANALYSIS
CHAPTER FIVE RESULT ANALYSIS 5.1 Chapter Introduction 5.2 Discussion of Results 5.3 Performance Comparisons 5.4 Chapter Summary 61 5.1 Chapter Introduction This chapter outlines the results obtained from
High-resolution multi-projector display walls and applications
High-resolution multi-projector display walls and applications Daniel R. Schikore Richard A. Fischer Randall Frank Ross Gaunt John Hobson Brad Whitlock Lawrence Livermore National Laboratory Recent advances
An Interactive Dynamic Tiled Display System
An Interactive Dynamic Tiled Display System Juliano Franz, Gelson Reinaldo, Anderson Maciel and Luciana Nedel Instituto de Informática Universidade Federal do Rio Grande do Sul Porto Alegre, Brazil {[email protected],
Touchstone -A Fresh Approach to Multimedia for the PC
Touchstone -A Fresh Approach to Multimedia for the PC Emmett Kilgariff Martin Randall Silicon Engineering, Inc Presentation Outline Touchstone Background Chipset Overview Sprite Chip Tiler Chip Compressed
OctaVis: A Simple and Efficient Multi-View Rendering System
OctaVis: A Simple and Efficient Multi-View Rendering System Eugen Dyck, Holger Schmidt, Mario Botsch Computer Graphics & Geometry Processing Bielefeld University Abstract: We present a simple, low-cost,
Load Balancing for Multi-Projector Rendering Systems
Load Balancing for Multi-Projector Rendering Systems Rudrajit Samanta, Jiannan Zheng, Thomas Funkhouser, Kai Li, and Jaswinder Pal Singh Princeton University Abstract Multi-projector systems are increasingly
1. INTRODUCTION Graphics 2
1. INTRODUCTION Graphics 2 06-02408 Level 3 10 credits in Semester 2 Professor Aleš Leonardis Slides by Professor Ela Claridge What is computer graphics? The art of 3D graphics is the art of fooling the
Advanced Rendering for Engineering & Styling
Advanced Rendering for Engineering & Styling Prof. B.Brüderlin Brüderlin,, M Heyer 3Dinteractive GmbH & TU-Ilmenau, Germany SGI VizDays 2005, Rüsselsheim Demands in Engineering & Styling Engineering: :
Introduction to Computer Graphics
Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 [email protected] www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics
HPC & Visualization. Visualization and High-Performance Computing
HPC & Visualization Visualization and High-Performance Computing Visualization is a critical step in gaining in-depth insight into research problems, empowering understanding that is not possible with
VisIt Visualization Tool
The Center for Astrophysical Thermonuclear Flashes VisIt Visualization Tool Randy Hudson [email protected] Argonne National Laboratory Flash Center, University of Chicago An Advanced Simulation and Computing
Large-Data Software Defined Visualization on CPUs
Large-Data Software Defined Visualization on CPUs Greg P. Johnson, Bruce Cherniak 2015 Rice Oil & Gas HPC Workshop Trend: Increasing Data Size Measuring / modeling increasingly complex phenomena Rendering
Parallel Visualization of Petascale Simulation Results from GROMACS, NAMD and CP2K on IBM Blue Gene/P using VisIt Visualization Toolkit
Available online at www.prace-ri.eu Partnership for Advanced Computing in Europe Parallel Visualization of Petascale Simulation Results from GROMACS, NAMD and CP2K on IBM Blue Gene/P using VisIt Visualization
NVIDIA IndeX. Whitepaper. Document version 1.0 3 June 2013
NVIDIA IndeX Whitepaper Document version 1.0 3 June 2013 NVIDIA Advanced Rendering Center Fasanenstraße 81 10623 Berlin phone +49.30.315.99.70 fax +49.30.315.99.733 [email protected] Copyright Information
A Hybrid Visualization System for Molecular Models
A Hybrid Visualization System for Molecular Models Charles Marion, Joachim Pouderoux, Julien Jomier Kitware SAS, France Sébastien Jourdain, Marcus Hanwell & Utkarsh Ayachit Kitware Inc, USA Web3D Conference
How To Teach Computer Graphics
Computer Graphics Thilo Kielmann Lecture 1: 1 Introduction (basic administrative information) Course Overview + Examples (a.o. Pixar, Blender, ) Graphics Systems Hands-on Session General Introduction http://www.cs.vu.nl/~graphics/
GPU Architecture. Michael Doggett ATI
GPU Architecture Michael Doggett ATI GPU Architecture RADEON X1800/X1900 Microsoft s XBOX360 Xenos GPU GPU research areas ATI - Driving the Visual Experience Everywhere Products from cell phones to super
CS130 - Intro to computer graphics. Dr. Victor B. Zordan [email protected] www.cs.ucr.edu/~vbz. Objectives
CS130 - Intro to computer graphics Dr. Victor B. Zordan [email protected] www.cs.ucr.edu/~vbz Objectives Explore basics of computer graphics Survey application areas Today, brief introduction to graphics
Introduction to Cloud Computing
Introduction to Cloud Computing Parallel Processing I 15 319, spring 2010 7 th Lecture, Feb 2 nd Majd F. Sakr Lecture Motivation Concurrency and why? Different flavors of parallel computing Get the basic
2: Introducing image synthesis. Some orientation how did we get here? Graphics system architecture Overview of OpenGL / GLU / GLUT
COMP27112 Computer Graphics and Image Processing 2: Introducing image synthesis [email protected] 1 Introduction In these notes we ll cover: Some orientation how did we get here? Graphics system
Parallel Large-Scale Visualization
Parallel Large-Scale Visualization Aaron Birkland Cornell Center for Advanced Computing Data Analysis on Ranger January 2012 Parallel Visualization Why? Performance Processing may be too slow on one CPU
Base One's Rich Client Architecture
Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.
COMP175: Computer Graphics. Lecture 1 Introduction and Display Technologies
COMP175: Computer Graphics Lecture 1 Introduction and Display Technologies Course mechanics Number: COMP 175-01, Fall 2009 Meetings: TR 1:30-2:45pm Instructor: Sara Su ([email protected]) TA: Matt Menke
A Short Introduction to Computer Graphics
A Short Introduction to Computer Graphics Frédo Durand MIT Laboratory for Computer Science 1 Introduction Chapter I: Basics Although computer graphics is a vast field that encompasses almost any graphical
Using Photorealistic RenderMan for High-Quality Direct Volume Rendering
Using Photorealistic RenderMan for High-Quality Direct Volume Rendering Cyrus Jam [email protected] Mike Bailey [email protected] San Diego Supercomputer Center University of California San Diego Abstract With
Cluster Computing at HRI
Cluster Computing at HRI J.S.Bagla Harish-Chandra Research Institute, Chhatnag Road, Jhunsi, Allahabad 211019. E-mail: [email protected] 1 Introduction and some local history High performance computing
Course Overview. CSCI 480 Computer Graphics Lecture 1. Administrative Issues Modeling Animation Rendering OpenGL Programming [Angel Ch.
CSCI 480 Computer Graphics Lecture 1 Course Overview January 14, 2013 Jernej Barbic University of Southern California http://www-bcf.usc.edu/~jbarbic/cs480-s13/ Administrative Issues Modeling Animation
A Method Based on the Combination of Dynamic and Static Load Balancing Strategy in Distributed Rendering Systems
Journal of Computational Information Systems : 4 (24) 759 766 Available at http://www.jofcis.com A Method Based on the Combination of Dynamic and Static Load Balancing Strategy in Distributed Rendering
Visualization with ParaView. Greg Johnson
Visualization with Greg Johnson Before we begin Make sure you have 3.8.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.html http://www.paraview.org/
Parallel Simplification of Large Meshes on PC Clusters
Parallel Simplification of Large Meshes on PC Clusters Hua Xiong, Xiaohong Jiang, Yaping Zhang, Jiaoying Shi State Key Lab of CAD&CG, College of Computer Science Zhejiang University Hangzhou, China April
The Visualization Pipeline
The Visualization Pipeline Conceptual perspective Implementation considerations Algorithms used in the visualization Structure of the visualization applications Contents The focus is on presenting the
Visualization with ParaView
Visualization with ParaView Before we begin Make sure you have ParaView 4.1.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.php Background http://www.paraview.org/
APPLICATIONS OF LINUX-BASED QT-CUDA PARALLEL ARCHITECTURE
APPLICATIONS OF LINUX-BASED QT-CUDA PARALLEL ARCHITECTURE Tuyou Peng 1, Jun Peng 2 1 Electronics and information Technology Department Jiangmen Polytechnic, Jiangmen, Guangdong, China, [email protected]
Efficient Storage, Compression and Transmission
Efficient Storage, Compression and Transmission of Complex 3D Models context & problem definition general framework & classification our new algorithm applications for digital documents Mesh Decimation
www.xenon.com.au STORAGE HIGH SPEED INTERCONNECTS HIGH PERFORMANCE COMPUTING VISUALISATION GPU COMPUTING
www.xenon.com.au STORAGE HIGH SPEED INTERCONNECTS HIGH PERFORMANCE COMPUTING GPU COMPUTING VISUALISATION XENON Accelerating Exploration Mineral, oil and gas exploration is an expensive and challenging
SUPERCOMPUTING FACILITY INAUGURATED AT BARC
SUPERCOMPUTING FACILITY INAUGURATED AT BARC The Honourable Prime Minister of India, Dr Manmohan Singh, inaugurated a new Supercomputing Facility at Bhabha Atomic Research Centre, Mumbai, on November 15,
- An Essential Building Block for Stable and Reliable Compute Clusters
Ferdinand Geier ParTec Cluster Competence Center GmbH, V. 1.4, March 2005 Cluster Middleware - An Essential Building Block for Stable and Reliable Compute Clusters Contents: Compute Clusters a Real Alternative
Client/Server Computing Distributed Processing, Client/Server, and Clusters
Client/Server Computing Distributed Processing, Client/Server, and Clusters Chapter 13 Client machines are generally single-user PCs or workstations that provide a highly userfriendly interface to the
C-nario Cube. June, 2008
C-nario Cube Infinitely Scalable Pixel-Perfect Multi- Display System June, 2008 C-nario Cube The only video wall processor combined with digital signage software for remote management, content creation
HPC Wales Skills Academy Course Catalogue 2015
HPC Wales Skills Academy Course Catalogue 2015 Overview The HPC Wales Skills Academy provides a variety of courses and workshops aimed at building skills in High Performance Computing (HPC). Our courses
Overlapping Data Transfer With Application Execution on Clusters
Overlapping Data Transfer With Application Execution on Clusters Karen L. Reid and Michael Stumm [email protected] [email protected] Department of Computer Science Department of Electrical and Computer
Image Processing and Computer Graphics. Rendering Pipeline. Matthias Teschner. Computer Science Department University of Freiburg
Image Processing and Computer Graphics Rendering Pipeline Matthias Teschner Computer Science Department University of Freiburg Outline introduction rendering pipeline vertex processing primitive processing
Data Visualization Study at Earth Simulator Center
Chapter 4 Visualization Data Visualization Study at Earth Simulator Center Project Representative Akira Kageyama The Earth Simulator Center, Japan Agency for Marine-Earth Science and Technology Authors
Computer Applications in Textile Engineering. Computer Applications in Textile Engineering
3. Computer Graphics Sungmin Kim http://latam.jnu.ac.kr Computer Graphics Definition Introduction Research field related to the activities that includes graphics as input and output Importance Interactive
Introduction to Visualization with VTK and ParaView
Introduction to Visualization with VTK and ParaView R. Sungkorn and J. Derksen Department of Chemical and Materials Engineering University of Alberta Canada August 24, 2011 / LBM Workshop 1 Introduction
Graphics Cards and Graphics Processing Units. Ben Johnstone Russ Martin November 15, 2011
Graphics Cards and Graphics Processing Units Ben Johnstone Russ Martin November 15, 2011 Contents Graphics Processing Units (GPUs) Graphics Pipeline Architectures 8800-GTX200 Fermi Cayman Performance Analysis
Remote Large Data Visualization in the ParaView Framework
Eurographics Symposium on Parallel Graphics and Visualization (2006) Alan Heirich, Bruno Raffin, and Luis Paulo dos Santos (Editors) Remote Large Data Visualization in the ParaView Framework Andy Cedilnik,
Data Centric Interactive Visualization of Very Large Data
Data Centric Interactive Visualization of Very Large Data Bruce D Amora, Senior Technical Staff Gordon Fossum, Advisory Engineer IBM T.J. Watson Research/Data Centric Systems #OpenPOWERSummit Data Centric
Seeking Opportunities for Hardware Acceleration in Big Data Analytics
Seeking Opportunities for Hardware Acceleration in Big Data Analytics Paul Chow High-Performance Reconfigurable Computing Group Department of Electrical and Computer Engineering University of Toronto Who
Visualizing Data: Scalable Interactivity
Visualizing Data: Scalable Interactivity The best data visualizations illustrate hidden information and structure contained in a data set. As access to large data sets has grown, so has the need for interactive
Recent Advances and Future Trends in Graphics Hardware. Michael Doggett Architect November 23, 2005
Recent Advances and Future Trends in Graphics Hardware Michael Doggett Architect November 23, 2005 Overview XBOX360 GPU : Xenos Rendering performance GPU architecture Unified shader Memory Export Texture/Vertex
LS-DYNA Scalability on Cray Supercomputers. Tin-Ting Zhu, Cray Inc. Jason Wang, Livermore Software Technology Corp.
LS-DYNA Scalability on Cray Supercomputers Tin-Ting Zhu, Cray Inc. Jason Wang, Livermore Software Technology Corp. WP-LS-DYNA-12213 www.cray.com Table of Contents Abstract... 3 Introduction... 3 Scalability
Monash University Clayton s School of Information Technology CSE3313 Computer Graphics Sample Exam Questions 2007
Monash University Clayton s School of Information Technology CSE3313 Computer Graphics Questions 2007 INSTRUCTIONS: Answer all questions. Spend approximately 1 minute per mark. Question 1 30 Marks Total
The Evolution of Computer Graphics. SVP, Content & Technology, NVIDIA
The Evolution of Computer Graphics Tony Tamasi SVP, Content & Technology, NVIDIA Graphics Make great images intricate shapes complex optical effects seamless motion Make them fast invent clever techniques
Introduction to GPU Programming Languages
CSC 391/691: GPU Programming Fall 2011 Introduction to GPU Programming Languages Copyright 2011 Samuel S. Cho http://www.umiacs.umd.edu/ research/gpu/facilities.html Maryland CPU/GPU Cluster Infrastructure
MayaVi: A free tool for CFD data visualization
MayaVi: A free tool for CFD data visualization Prabhu Ramachandran Graduate Student, Dept. Aerospace Engg. IIT Madras, Chennai, 600 036. e mail: [email protected] Keywords: Visualization, CFD data,
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
Understanding the Performance of an X550 11-User Environment
Understanding the Performance of an X550 11-User Environment Overview NComputing's desktop virtualization technology enables significantly lower computing costs by letting multiple users share a single
EVOLUTION AND INDUSTRIALIZATION OF A SBAS REAL-TIME PERFORMANCE MONITORING TOOL (EVORA)
ENC 2015 Page 1 EVOLUTION AND INDUSTRIALIZATION OF A SBAS REAL-TIME PERFORMANCE MONITORING TOOL (EVORA) J. Doubek 1, M. Houdek 1, C. A. Pandele 2,3, A. Polivka 1, D. Chung 1 1 Iguassu Software Systems,
