This table lists the files/information you need and what VTune Performance Analyzer features they enable.

Size: px
Start display at page:

Download "This table lists the files/information you need and what VTune Performance Analyzer features they enable."

Transcription

1 Command-line Quick Reference Guide

2 Before You Begin This table lists the files/information you need and what VTune Performance Analyzer features they enable. File/Information Binary program Symbol information Line number information Source files Compilation information Enables Launching and analyzing the application's performance, and displaying disassembly code. The binary program is an executable file, extension, library or object for example,.exe,.obj,.ocx,.dll,,.vxd,.o or.so file. To analyze the performance of your program using sampling or call graph data collection, specify the executable file that you want to analyze, or the executable file that launches other modules you want to analyze. Instrumentation in call graph, display of symbol names in static module analysis, Hotspot, Source, and Assembly Views. Instrumention, call graph, Function and Hotspot Views of sampling data collection, and Source View. Line number and symbol information, also referred to as debug information, is generated by your compiler and provided either in a separate file or as part of the binary file. If your binary file does not contain line number information, you must supply a symbol file containing line number and symbol information for example:.pdb,.dbg and.sym file formats. Source code display. To view source code, the source files must be available. Intel Tuning Assistant and source code advice. The Tuning Assistant uses compilation information to display tuning advice for your C, C++, and Java* source code. You need to provide this information in one of these formats: C++ project file (.dsp). Makefile (makefile or.mak) and the make utility used to build the executable. Preprocessor (.i) file or source files with compiler options. See the Release Notes for the complete list of compilers supported. Getting Help Online Help (Windows Only) To view online help: Select Start Programs Intel VTune Performance Analyzer Help for the Command Line. From the command line, use hh.exe to view the WindowsCli.chm file: hh.exe <install-dir>\help\windowscli.chm Command-line Help (Windows and Linux) The command-line help provides brief descriptions and syntax of vtl commands and options. To view the command line help, enter: vtl help To view help for data collector options, enter: vtl help [ c collector <name>] vtl help c sampling To view the command line help for view options, enter: vtl help [ v view <name>] vtl help v sampling Note: Use double quotes if there are spaces in the data collector/view name. For example: vtl help v "Tuning Assistant" Page 2

3 Man Pages (Linux Only) VTune Performance Analyzer The VTune analyzer manual pages provide descriptions of the vtl command, the ActivityController, the Source view, sampling and call graph via the following commands: man vtl man ActivityController man sampling man callgraph man source man 7 source man code Working with Projects and Activities The following commands are available for the Linux* and Windows* operating systems using the vtl command: Command activity delete global-options pack import query run show version view Description Creates an Activity. Deletes the project or an Activity. Displays or modifies default option values for all Activities in a project. Packs the project's contents into file. Imports a file into a project. Provides information about available collectors and views. Runs the Activity defined in the project file. Shows the contents of the project. Shows version information. Shows the Activity result in an ASCII format. The following command is supported only with the Windows command-line interface using the vtl command: merge Merges Activity results. Note: You can enter multiple commands in a single command line. vtl show activity c sampling show run a1 show Quick Start with Sampling Use the VTune TM Performance Analyzer's sampling collector to find the performance bottlenecks in your code. From the command line you can create an Activity, add the sampling collector to the Activity, and then run the Activity to collect data. Using default configuration, the VTune analyzer configures the collector, launches the specified application, and collects the data. You can view the data directly at the command line, or output it to a text file. To quickly create a project, collect sampling data using the default configuration, and then view the results, do the following: 1. Create an Activity with a sampling collector using default configuration, specify the application you wish to tune, and run the Activity using the following command: vtl activity [<name>] d <#> c sampling app [<app_name>] run Page 3

4 where <name> is the name of the Activity, <#> is the length of time the Activity is run, and <app_name> is the path and name of the application to launch. The application will be executed and the Activity and sampling data collection will start and continue till the end of the specified time. By default, the collected sampling data are stored in your directory. vtl activity d 25 c sampling run The Activity is running. Tue Nov 26 16:41: <localhost> (Run 1) The Sampling Collector is calibrating its collection parameters for the following event(s): Instructions Retired, Clockticks. Tue Nov 26 16:41: <localhost> (Run 1) The Sampling Collector is collecting samples based on the following event(s): Instructions Retired, Clockticks. Tue Nov 26 16:42: <localhost> (Run 1) Sampling data was successfully collected. The Activity has finished running. 2. View the contents of the project and check whether the Activity result was created by using the show command. vtl show a1 Activity1 r1 Sampling Results Tue Nov 26 16:42: View the results in the appropriate sampling view with: view <ActivityName::ActivityResultName> [<option>] where <option> could be processes, modules, hotspot-address ( or ha), hotspot-function (or hf), hotspot-class (or hc), or hotspot-source (or hs). vtl view a1::r1 processes The output will contain the total samples collected and selected, an event summary, and a list of the processes sampled during the collection. 4. Optionally, export collected data to a spreadsheet format for viewing and editing. Use the column delimiter option ( cd) to separate columns. vtl view a1::r1 processes cd ',' > smp_pv.csv Note: To sample particular events with your application, do the following: 1. To view the list of events available for your processor, enter: vtl help c sampling 2. When creating an Activity, use o [ ec event-config [)] en event-name='<event name>' to specify events to sample, and [:sa sample-after=<sample after> to specify the sample after value for events. Event names should be embedded within single quotes and sampling configuration options should be embedded within double quotes. vtl activity d 30 c sampling o " ec en='clockticks':sa=2" run This invocation creates an Activity with the sampling collector, runs event-based sampling for 30 seconds using the default settings, and samples only the clockticks event. Page 4

5 Quick Start with Call Graph (Linux Command-line Only) 1 Use the VTune TM Performance Analyzer's call graph collector to gather function call data for your program, track how much time each function spends on each call, and identify the most critical path in the program. From the command line, you can create an Activity, add the call graph collector to the Activity, and then run the Activity to collect data. Using the default configuration, the VTune analyzer configures the collector, launches the specified application, and collects the data. You can view the data directly at the command line, or redirect the output to a text file. To quickly create a project, collect call graph data using default configuration, and then view the results, do the following: 1. Create an Activity with a call graph collector using the default configuration, specify the application you wish to tune, and run the Activity using the following command: vtl activity [<name>] c callgraph app <app_name> moi <app_name> run where <name> is the name of the Activity, <app_name> is the name and path of the application to launch and the module of interest. The application will be instrumented and the Activity and data collection will start and continue until the application terminates or until you stop the Activity with the ActivityController. vtl activity c callgraph app./vtundemo moi./vtundemo run The Activity is running. Discovery Summary Found 17 procedures. Fail to instrument 9 of them. Starting VTunDemo Program Wait for Completion. Fri Oct 25 17:47: Static instrumentation started. Fri Oct 25 17:47: All function instrumentation of module vtundemo was successful. [...] Fri Oct 25 17:48: Data collection finished... Fri Oct 25 17:48: Updating callgraph database... Fri Oct 25 17:48: Done. The Activity has finished running. 2. View the contents of the project and check whether the Activity result was created by using the show command: vtl show a1 Activity1 r1 callgraph Results Fri Oct 25 17:48: View the Activity result in the appropriate call graph view with: vtl view <ActivityName::ActivityResultName> [<option>] where [<option>] could be processes (process view), threads (thread view), modules (module view), or functions (function view). vtl view a1::r1 modules [MODULE] /home/vtune/tst2/vtundemo /tmp/vtune_vtune/cache/libcgraphinst.so /lib/libpthread-0.9.so /lib/libc so The output contains the list of modules in the vtundemo application. 1 Call graph data collection is not yet supported using the Windows* Command-line interface of the VTune analyzer. Use the VTune analyzer GUI for call graph data collection on Windows* platforms. Page 5

6 Redirecting Input, Output and Standard Error VTune Performance Analyzer The command-line interface supports shell redirection. vtl activity d 5 c sampling o " cal no" app wc,'< in.txt > out.txt 2> err.txt',/home/vtune run Using the Intel Tuning Assistant The Intel Tuning Assistant enables you to determine which Activity result(s) to analyze and the types of advice the Tuning Assistant displays. Note: The Tuning Assistant only works on certain processors. See the product Release Notes for the list of supported processors. To invoke the Tuning Assistant from the command line, enter: vtl view ar [<ActivityName::ActivityResultName>] ta [<options>] where: [<ActivityName::ActivityResultName>] is the name of the Activity and Activity result for example: a2::r1. If no arguments are specified, the VTune TM Performance Analyzer displays data of the most recent Activity result. [<options>] is the tuning assistant option(s) (see following table) used to filter and analyze the collected data. Tuning Assistant Option [ cmp-ar] [ ta-context] [ bin aha-bin-size [ minctp minimumclockticks-percentage] [ rgn-insight-only show-regions-withinsights-only] [ thresh] Details A comma-separated list of Activity results. vtl view ar a1::r1 ta cmp-ar a2::r1,a3::r1 Arguments are <context1,context2,...> option where <context> is a following sub-option: pn process-name=<name> mn module-name=<name> rva rva-range=<start+stop> vtl view ta cmp-ar a1::r1,a2::r1 ta-context pn=vtundemo.exe Specify the size of the code regions the Intel Tuning Assistant will use to compare different executables and provide tuning advice on. The code regions can be defined at the function level or by lines of source code. vtl view ar a2::r1 ta ta-cmp a3::r1 bin 128 Use the minimum-clockticks-percentage (or minctp) option to set the minimum percentage of the workload clockticks that must be present in a code region in order for it to be included in the Tuning Assistant report. vtl view ta ar a2::r1 minctp 10 If you use the show-regions-with-insights-only (or rgn-insight-only) option with the [true] argument, only code regions that have relevant insights will be displayed in the tuning advice report. This is also the default if no Tuning Assistant options are included. vtl view ta ar a2::r1 rgn-insight-only false Set the thresh option to the required value (1 100) to display insights only if their relevance score is at or above the threshold value you specify. The Tuning Assistant assigns a relevance score to each insight according to the values measured during a sampling session. vtl view ar a3::r1 ta cmp-ar a2::r1 thresh 10 Page 6

7 Tuning Assistant Option [ rf report-format] [ it insight-types] Details Use the report-format (or rf) option to specify the desired output format of the tuning advice report: HTML or CSV (comma-separated values). vtl view ar a3::r1 ta cmp-ar a2::r1 rf csv In this example, the tuning advice report comparing two Activity results a3::r1 and a2::r1 will be provided in the CSV format. If not specified, the default format is HTML. To specify the insight types that should be displayed in the report, use the insight-types (or it) option. The following insights types are available: tb time-based coding pitfalls op other possible problems ch characterization insights ts time statistics ev raw event counts er event ratios If not specified, the tb, op, ch, and ts insight types are displayed by default. vtl view ar a3::r1 ta cmp-ar a2::r1 it ts,ev,ch In this example, the tuning advice report comparing two Activity results a3::r1 and a2::r1 will display the following insight types: Time Statistics, Event Ratios, and Characterization insights. [ nti num-top-insights] You can specify the number of top insights to display at the top of the HTML report by using the num-top-insights (or nti) option. The top insights have hyperlinks to the associated code regions deeper within the report. By default, 5 top insights are displayed. vtl view ta cmp-ar a3::r1 nti 3 [ bsp bus-speed-primary] [ bsr1 bus-speed-ref1] [ bsr2 bus-speed-ref2] [ sep sort-event-primary] [ ser1 sort-event-ref1] [ ser2 sort-event-ref2] Specifies the front-side bus speed for the Primary Activity result. Specifies the front-side bus speed for the Reference 1 Activity result. Specifies the front-side bus speed for the Reference 2 Activity result. vtl view a1::r1 ta cmp-ar a3::r1,a2::r1 bsp 667 bsr1 400 bsr2 800 In this example, tuning advice will be based on comparing Activity results a1::r1, a3::r1, and a2::r1 collected on systems with the front side speeds equal to 667 MHz, 400 MHz, and 800 MHz, respectively. Specifies the sorting event for the Primary Activity result. Specifies the sorting event for the Reference 1 Activity result. Specifies the sorting event for the Reference 2 Activity result. vtl view a1::r1 ta cmp-ar a3::r1,a2::r1 sep Clockticks ser1 CPU Cycles ser2 CPU Cycles In this example, the matching code regions for Activity results a1::r1 and a3::r1 will be sorted by the difference of Clockticks and CPU_CYCLES, operating under the assumption that Clockticks and CPU_CYCLES are essentially equivalent events. Time statistics in the tuning advice report will use Clockticks for a1::r1 and CPU_CYCLES for a3::r1 and a2::r1. Tips: You can also configure the Tuning Assistant by using the configuration options saved to a file. For reference documentation on the Tuning Assistant options (similar to the previous table), enter: vtl help v "Tuning Assistant" Page 7

8 Controlling Activities VTune Performance Analyzer Use the ActivityController tool to manage the Activity while it is running. The ActivityController has two user-interface modes: interactive and non-interactive. In the interactive mode, the ActivityController displays a list of actions to perform on the currently running Activity. Select the desired action. In the non-interactive mode, specify the action in the command line. To invoke the ActivityController, enter ActivityController at the prompt. You may have to start another shell to do this. Interactive Mode At the prompt, enter: ActivityController The output is the following: You are controlling the following Activity: [Activity name goes here] Please select one of the following actions to use with the Activity: 1. Stop Activity 2. Cancel Activity 3. Pause Activity 4. Resume Activity 5. Activity Status 6. Activity Information 7. Quit Type in the number corresponding to the action for the ActivityController to perform. It displays status messages for the first four actions. Both Stop (1) and Cancel (2) cause the ActivityController to exit. Activity Status (5) shows the current state of the Activity. Activity Information (6) displays information about the contents of the Activity: data collectors. Non-Interactive Mode The non-interactive mode supports the same commands as interactive mode. However, after the action is performed, the ActivityController exits, returning to the command line prompt. To invoke the non-interactive mode, launch the ActivityController executable with the required command line option: stop, cancel, pause, resume, status or info. ActivityController cancel Notes: Only the first 35 characters of the Activity name are displayed. You can only control the Activity you are currently running. This allows multiple users to run the ActivityController independently of other users controlling their own Activities. You cannot use several instances of the ActivityController to manage the same Activity at the same time. Tip: To review the command line arguments that can be used in the non-interactive mode, enter: ActivityController help Notes for the Linux* operating system: The Pause/Resume actions are supported for call graph data collection only. View the manual page for the brief reference on ActivityController options: man ActivityController Copyright 2003, Intel Corporation, All Rights Reserved. * Other names and brands may be claimed as the property of others. Page 8

Basics of VTune Performance Analyzer. Intel Software College. Objectives. VTune Performance Analyzer. Agenda

Basics of VTune Performance Analyzer. Intel Software College. Objectives. VTune Performance Analyzer. Agenda Objectives At the completion of this module, you will be able to: Understand the intended purpose and usage models supported by the VTune Performance Analyzer. Identify hotspots by drilling down through

More information

The Intel VTune Performance Analyzer

The Intel VTune Performance Analyzer The Intel VTune Performance Analyzer Focusing on Vtune for Intel Itanium running Linux* OS Copyright 2002 Intel Corporation. All rights reserved. VTune and the Intel logo are trademarks or registered trademarks

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

FileNet System Manager Dashboard Help

FileNet System Manager Dashboard Help FileNet System Manager Dashboard Help Release 3.5.0 June 2005 FileNet is a registered trademark of FileNet Corporation. All other products and brand names are trademarks or registered trademarks of their

More information

High Performance Computing in Aachen

High Performance Computing in Aachen High Performance Computing in Aachen Christian Iwainsky iwainsky@rz.rwth-aachen.de Center for Computing and Communication RWTH Aachen University Produktivitätstools unter Linux Sep 16, RWTH Aachen University

More information

Command Line Interface User Guide for Intel Server Management Software

Command Line Interface User Guide for Intel Server Management Software Command Line Interface User Guide for Intel Server Management Software Legal Information Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel

More information

PERFORMANCE TOOLS DEVELOPMENTS

PERFORMANCE TOOLS DEVELOPMENTS PERFORMANCE TOOLS DEVELOPMENTS Roberto A. Vitillo presented by Paolo Calafiura & Wim Lavrijsen Lawrence Berkeley National Laboratory Future computing in particle physics, 16 June 2011 1 LINUX PERFORMANCE

More information

Work with the MiniBase App

Work with the MiniBase App Work with the MiniBase App Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08 Site Configuration SETUP GUIDE Windows Hosts Single Workstation Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted

More information

System Monitoring and Diagnostics Guide for Siebel Business Applications. Version 7.8 April 2005

System Monitoring and Diagnostics Guide for Siebel Business Applications. Version 7.8 April 2005 System Monitoring and Diagnostics Guide for Siebel Business Applications April 2005 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2005 Siebel Systems, Inc. All rights reserved.

More information

Get an Easy Performance Boost Even with Unthreaded Apps. with Intel Parallel Studio XE for Windows*

Get an Easy Performance Boost Even with Unthreaded Apps. with Intel Parallel Studio XE for Windows* Get an Easy Performance Boost Even with Unthreaded Apps for Windows* Can recompiling just one file make a difference? Yes, in many cases it can! Often, you can achieve a major performance boost by recompiling

More information

User's Guide - Beta 1 Draft

User's Guide - Beta 1 Draft IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Cluster Server Agent vnext User's Guide - Beta 1 Draft SC27-2316-05 IBM Tivoli Composite Application Manager for Microsoft

More information

10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition

10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition 10 STEPS TO YOUR FIRST QNX PROGRAM QUICKSTART GUIDE Second Edition QNX QUICKSTART GUIDE A guide to help you install and configure the QNX Momentics tools and the QNX Neutrino operating system, so you can

More information

Portlets for Groupware Integration

Portlets for Groupware Integration BEAWebLogic Portlets for Groupware Integration WebLogic Exchange Service Setup Guide Version 3.0 Revised: October 2006 Contents 1. Introduction Prerequisites............................................................

More information

Exporting Client Information

Exporting Client Information Contents About Exporting Client Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Client Information Exporting Client Information About Exporting Client Information Selected

More information

Miami University RedHawk Cluster Working with batch jobs on the Cluster

Miami University RedHawk Cluster Working with batch jobs on the Cluster Miami University RedHawk Cluster Working with batch jobs on the Cluster The RedHawk cluster is a general purpose research computing resource available to support the research community at Miami University.

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Using Process Monitor

Using Process Monitor Using Process Monitor Process Monitor Tutorial This information was adapted from the help file for the program. Process Monitor is an advanced monitoring tool for Windows that shows real time file system,

More information

Setting Up the Site Licenses

Setting Up the Site Licenses XC LICENSE SERVER Setting Up the Site Licenses INTRODUCTION To complete the installation of an XC Site License, create an options file that includes the Host Name (computer s name) of each client machine.

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc.

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc. FTP/400 File Transfer API and Remote Command Server Version 1.00 Users Guide By RJS Software Systems, Inc. RJS Software Systems P.O. Box 19408 Minneapolis, MN 55419 (612) 822-0412 Voice (612) 822-1364

More information

SalesPad for Dynamics GP DataCollection Installation & Setup

SalesPad for Dynamics GP DataCollection Installation & Setup SalesPad for Dynamics GP DataCollection Installation & Setup A software product created by SalesPad Solutions, LLC Copyright 2004-2011 www.salespad.net Contact Information SalesPad Solutions, LLC. 3200

More information

Developing In Eclipse, with ADT

Developing In Eclipse, with ADT Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)

More information

Exporting Contact Information

Exporting Contact Information Contents About Exporting Contact Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Contact Information Exporting Contact Information About Exporting Contact Information

More information

Intel System Event Log (SEL) Viewer Utility. User Guide SELViewer Version 10.0 /11.0 December 2012 Document number: G88216-001

Intel System Event Log (SEL) Viewer Utility. User Guide SELViewer Version 10.0 /11.0 December 2012 Document number: G88216-001 Intel System Event Log (SEL) Viewer Utility User Guide SELViewer Version 10.0 /11.0 December 2012 Document number: G88216-001 Legal Statements INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

Improve Fortran Code Quality with Static Analysis

Improve Fortran Code Quality with Static Analysis Improve Fortran Code Quality with Static Analysis This document is an introductory tutorial describing how to use static analysis on Fortran code to improve software quality, either by eliminating bugs

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

1 Documentation Accessibility

1 Documentation Accessibility Oracle Database Client Quick Installation Guide 10g Release 1 (10.1.0.2.0) for Windows Part No. B13691-01 March 2004 This guide describes how to quickly install Oracle Database Client on Windows systems.

More information

MySQL for Beginners Ed 3

MySQL for Beginners Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Beginners Ed 3 Duration: 4 Days What you will learn The MySQL for Beginners course helps you learn about the world's most popular open source database.

More information

Juropa. Batch Usage Introduction. May 2014 Chrysovalantis Paschoulas c.paschoulas@fz-juelich.de

Juropa. Batch Usage Introduction. May 2014 Chrysovalantis Paschoulas c.paschoulas@fz-juelich.de Juropa Batch Usage Introduction May 2014 Chrysovalantis Paschoulas c.paschoulas@fz-juelich.de Batch System Usage Model A Batch System: monitors and controls the resources on the system manages and schedules

More information

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board Quick Start Tutorial Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board This explains how to use the TASKING Microsoft* Windows*-based software development tools

More information

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Embedded Processor Hardware Design January 29 th 2015. VIVADO TUTORIAL 1 Table of Contents Requirements... 3 Part 1:

More information

INTEL PARALLEL STUDIO XE EVALUATION GUIDE

INTEL PARALLEL STUDIO XE EVALUATION GUIDE Introduction This guide will illustrate how you use Intel Parallel Studio XE to find the hotspots (areas that are taking a lot of time) in your application and then recompiling those parts to improve overall

More information

THUM - Temperature Humidity USB Monitor

THUM - Temperature Humidity USB Monitor THUM - Temperature Humidity USB Monitor The THUM is a true USB device to monitor temperature and relative humidity of an interior living, working, and storage spaces. The THUM is ideal for computer rooms,

More information

Enhanced Attendance Reporting for SmartLock Pro Plus OPERATOR GUIDE

Enhanced Attendance Reporting for SmartLock Pro Plus OPERATOR GUIDE Enhanced Attendance Reporting for SmartLock Pro Plus OPERATOR GUIDE February 2014 Table of Contents Introduction... 3 Installing the Software... 4 Getting Started... 5 Software Setup... 7 Attendance Zones...

More information

NetBeans Profiler is an

NetBeans Profiler is an NetBeans Profiler Exploring the NetBeans Profiler From Installation to a Practical Profiling Example* Gregg Sporar* NetBeans Profiler is an optional feature of the NetBeans IDE. It is a powerful tool that

More information

Intel System Event Log (SEL) Viewer Utility

Intel System Event Log (SEL) Viewer Utility Intel System Event Log (SEL) Viewer Utility User Guide Document No. E12461-007 Legal Statements INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS FOR THE GENERAL PURPOSE OF SUPPORTING

More information

Avalanche Site Edition

Avalanche Site Edition Avalanche Site Edition Version 4.8 avse ug 48 20090325 Revised 03/20/2009 ii Copyright 2008 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite 335 Midvale,

More information

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002) Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and

More information

PetaLinux SDK User Guide. Application Development Guide

PetaLinux SDK User Guide. Application Development Guide PetaLinux SDK User Guide Application Development Guide Notice of Disclaimer The information disclosed to you hereunder (the "Materials") is provided solely for the selection and use of Xilinx products.

More information

Opening a Command Shell

Opening a Command Shell Opening a Command Shell Win Cmd Line 1 In WinXP, go to the Programs Menu, select Accessories and then Command Prompt. In Win7, go to the All Programs, select Accessories and then Command Prompt. Note you

More information

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc.

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc. Professional SlickEdif John Hurst IC..T...L i 1 8 О 7» \ WILEY \! 2 0 0 7 " > Wiley Publishing, Inc. Acknowledgments Introduction xiii xxv Part I: Getting Started with SiickEdit Chapter 1: Introducing

More information

EMC Smarts Integration Guide

EMC Smarts Integration Guide vcenter Operations Manager Enterprise 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more

More information

32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems

32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems 32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems Overview 64-bit Windows Systems Modifying the Working Folder for Universal Server Components Applications Installed in the Windows System

More information

VTune Performance Analyzer Essentials

VTune Performance Analyzer Essentials VTune Performance Analyzer Essentials The complete book is available from shopintel.com at a special discount for VTune analyzer users. Click the book cover and enter the promotional code vta2006 at the

More information

Analyze Traffic with Monitoring Interfaces and Packet Forwarding

Analyze Traffic with Monitoring Interfaces and Packet Forwarding Analyze Traffic with Monitoring Interfaces and Packet Forwarding Published: 2016-04-08 This guide explains how to configure an ExtraHop appliance to analyze network traffic using both monitoring interfaces

More information

Vendor: Crystal Decisions Product: Crystal Reports and Crystal Enterprise

Vendor: Crystal Decisions Product: Crystal Reports and Crystal Enterprise 1 Ability to access the database platforms desired (text, spreadsheet, Oracle, Sybase and other databases, OLAP engines.) Y Y 2 Ability to access relational data base Y Y 3 Ability to access dimensional

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2 FreeForm Designer FreeForm Designer enables designing smart forms based on industry-standard MS Word editing features. FreeForm Designer does not require any knowledge of or training in programming languages

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

CLC Server Command Line Tools USER MANUAL

CLC Server Command Line Tools USER MANUAL CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej

More information

FileMaker Pro and Microsoft Office Integration

FileMaker Pro and Microsoft Office Integration FileMaker Pro and Microsoft Office Integration page Table of Contents Executive Summary...3 Introduction...3 Top Reasons to Read This Guide...3 Before You Get Started...4 Downloading the FileMaker Trial

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Command Line Interface Specification Linux Mac

Command Line Interface Specification Linux Mac Command Line Interface Specification Linux Mac Online Backup Client version 4.1.x and higher 1. Introduction These modifications make it possible to access the BackupAgent Client software from the command

More information

MONITORING PERFORMANCE IN WINDOWS 7

MONITORING PERFORMANCE IN WINDOWS 7 MONITORING PERFORMANCE IN WINDOWS 7 Performance Monitor In this demo we will take a look at how we can use the Performance Monitor to capture information about our machine performance. We can access Performance

More information

Intel System Event Log (SEL) Viewer Utility

Intel System Event Log (SEL) Viewer Utility Intel System Event Log (SEL) Viewer Utility User Guide Document No. E12461-005 Legal Statements INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS FOR THE GENERAL PURPOSE OF SUPPORTING

More information

HP-UX Essentials and Shell Programming Course Summary

HP-UX Essentials and Shell Programming Course Summary Contact Us: (616) 875-4060 HP-UX Essentials and Shell Programming Course Summary Length: 5 Days Prerequisite: Basic computer skills Recommendation Statement: Student should be able to use a computer monitor,

More information

FMW-FIR. Financial Information Return For Ontario Municipalities

FMW-FIR. Financial Information Return For Ontario Municipalities FMW-FIR Financial Information Return For Ontario Municipalities FMW-FIR Installation and User Guide Table of Contents OVERVIEW... 1 WHAT IS THE FMW-FIR MODULE... 1 TECHNOLOGY OVERVIEW... 1 INSTALLATION...

More information

List of FTP commands for the Microsoft command-line FTP client

List of FTP commands for the Microsoft command-line FTP client You are on the nsftools.com site This is a list of the commands available when using the Microsoft Windows command-line FTP client (requires TCP/IP to be installed). All information is from the Windows

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

Improve Fortran Code Quality with Static Security Analysis (SSA)

Improve Fortran Code Quality with Static Security Analysis (SSA) Improve Fortran Code Quality with Static Security Analysis (SSA) with Intel Parallel Studio XE This document is an introductory tutorial describing how to use static security analysis (SSA) on C++ code

More information

Getting Started with CodeXL

Getting Started with CodeXL AMD Developer Tools Team Advanced Micro Devices, Inc. Table of Contents Introduction... 2 Install CodeXL... 2 Validate CodeXL installation... 3 CodeXL help... 5 Run the Teapot Sample project... 5 Basic

More information

Controlling LifeSize Video Systems from the CLI

Controlling LifeSize Video Systems from the CLI Controlling LifeSize Video Systems from the CLI Use the LifeSize command line interface (CLI) to automate access and control of LifeSize video communications systems and LifeSize Phone with software release

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

Spectrum Technology Platform. Version 9.0. Administration Guide

Spectrum Technology Platform. Version 9.0. Administration Guide Spectrum Technology Platform Version 9.0 Administration Guide Contents Chapter 1: Getting Started...7 Starting and Stopping the Server...8 Installing the Client Tools...8 Starting the Client Tools...9

More information

Audit TM. The Security Auditing Component of. Out-of-the-Box

Audit TM. The Security Auditing Component of. Out-of-the-Box Audit TM The Security Auditing Component of Out-of-the-Box This guide is intended to provide a quick reference and tutorial to the principal features of Audit. Please refer to the User Manual for more

More information

5nine Hyper-V Commander

5nine Hyper-V Commander 5nine Hyper-V Commander 5nine Hyper-V Commander provides a local graphical user interface (GUI), and a Framework to manage Hyper-V R2 server and various functions such as Backup/DR, HA and P2V/V2V. It

More information

What's New in ADP Reporting?

What's New in ADP Reporting? What's New in ADP Reporting? Welcome to the latest version of ADP Reporting! This release includes the following new features and enhancements. Use the links below to learn more about each one. What's

More information

Integrating VoltDB with Hadoop

Integrating VoltDB with Hadoop The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.

More information

Chapter 1: Getting Started

Chapter 1: Getting Started Chapter 1: Getting Started Every journey begins with a single step, and in ours it's getting to the point where you can compile, link, run, and debug C++ programs. This depends on what operating system

More information

Tutorial: Analyzing Energy Usage on an Android* Platform

Tutorial: Analyzing Energy Usage on an Android* Platform Tutorial: Analyzing Energy Usage on an Android* Platform Intel VTune Amplifier 2016 for Linux* OS Legal Information Contents Contents Legal Information... 5 Overview... 7 Chapter 1: Analyzing Energy Usage

More information

Lab 1: Introduction to C, ASCII ART and the Linux Command Line Environment

Lab 1: Introduction to C, ASCII ART and the Linux Command Line Environment .i.-' `-. i..' `/ \' _`.,-../ o o \.' ` ( / \ ) \\\ (_.'.'"`.`._) /// \\`._(..: :..)_.'// \`. \.:-:. /.'/ `-i-->..

More information

Monitoring Agent for PostgreSQL 1.0.0 Fix Pack 10. Reference IBM

Monitoring Agent for PostgreSQL 1.0.0 Fix Pack 10. Reference IBM Monitoring Agent for PostgreSQL 1.0.0 Fix Pack 10 Reference IBM Monitoring Agent for PostgreSQL 1.0.0 Fix Pack 10 Reference IBM Note Before using this information and the product it supports, read the

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

Asset Track Getting Started Guide. An Introduction to Asset Track

Asset Track Getting Started Guide. An Introduction to Asset Track Asset Track Getting Started Guide An Introduction to Asset Track Contents Introducing Asset Track... 3 Overview... 3 A Quick Start... 6 Quick Start Option 1... 6 Getting to Configuration... 7 Changing

More information

Table of Contents. The RCS MINI HOWTO

Table of Contents. The RCS MINI HOWTO Table of Contents The RCS MINI HOWTO...1 Robert Kiesling...1 1. Overview of RCS...1 2. System requirements...1 3. Compiling RCS from Source...1 4. Creating and maintaining archives...1 5. ci(1) and co(1)...1

More information

1 Intel Smart Connect Technology Installation Guide:

1 Intel Smart Connect Technology Installation Guide: 1 Intel Smart Connect Technology Installation Guide: 1.1 System Requirements The following are required on a system: System BIOS supporting and enabled for Intel Smart Connect Technology Microsoft* Windows*

More information

SciTools Understand Flavor for Structure 101g

SciTools Understand Flavor for Structure 101g SciTools Understand Flavor for Structure 101g By Marcio Marchini (marcio@betterdeveloper.net ) 2014/10/10 1) WHAT IS THE UNDERSTAND FLAVOR FOR STRUCTURE101G? 1 2) WHY VARIOUS FLAVORS, AND NOT JUST ONE?

More information

Installing HSPICE on UNIX, Linux or Windows Platforms

Installing HSPICE on UNIX, Linux or Windows Platforms This document describes how to install the HSPICE product. Note: The installation instructions in this document are the most up-to-date available at the time of production. However, changes might have

More information

Creating Cost Recovery Layouts

Creating Cost Recovery Layouts Contents About Creating Cost Recovery Layouts Creating New Layouts Defining Record Selection Rules Testing Layouts Processing Status Creating Cost Recovery Layouts About Creating Cost Recovery Layouts

More information

Understand for FORTRAN

Understand for FORTRAN Understand Your Software... Understand for FORTRAN User Guide and Reference Manual Version 1.4 Scientific Toolworks, Inc. Scientific Toolworks, Inc. 1579 Broad Brook Road South Royalton, VT 05068 Copyright

More information

Sales Person Commission

Sales Person Commission Sales Person Commission Table of Contents INTRODUCTION...1 Technical Support...1 Overview...2 GETTING STARTED...3 Adding New Salespersons...3 Commission Rates...7 Viewing a Salesperson's Invoices or Proposals...11

More information

Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4. 10 Steps to Developing a QNX Program Quickstart Guide

Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4. 10 Steps to Developing a QNX Program Quickstart Guide Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4 10 Steps to Developing a QNX Program Quickstart Guide 2008, QNX Software Systems GmbH & Co. KG. A Harman International Company. All rights

More information

Monitoring System Status

Monitoring System Status CHAPTER 14 This chapter describes how to monitor the health and activities of the system. It covers these topics: About Logged Information, page 14-121 Event Logging, page 14-122 Monitoring Performance,

More information

Tracking Network Changes Using Change Audit

Tracking Network Changes Using Change Audit CHAPTER 14 Change Audit tracks and reports changes made in the network. Change Audit allows other RME applications to log change information to a central repository. Device Configuration, Inventory, and

More information

Code Estimation Tools Directions for a Services Engagement

Code Estimation Tools Directions for a Services Engagement Code Estimation Tools Directions for a Services Engagement Summary Black Duck software provides two tools to calculate size, number, and category of files in a code base. This information is necessary

More information

Fleet Manager II. Operator Manual

Fleet Manager II. Operator Manual Fleet Manager II Operator Manual Table of Contents Table of Contents Table of Contents 2 About this Publication 4 Trademarks 5 About Fleet Manager II 6 Contact BW Technologies by Honeywell 7 Getting Started

More information

Rational Application Developer Performance Tips Introduction

Rational Application Developer Performance Tips Introduction Rational Application Developer Performance Tips Introduction This article contains a series of hints and tips that you can use to improve the performance of the Rational Application Developer. This article

More information

McAfee Endpoint Encryption Reporting Tool

McAfee Endpoint Encryption Reporting Tool McAfee Endpoint Encryption Reporting Tool User Guide Version 5.2.13 McAfee, Inc. McAfee, Inc. 3965 Freedom Circle, Santa Clara, CA 95054, USA Tel: (+1) 888.847.8766 For more information regarding local

More information

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X CONTENTS LMS 365 Learning Module Builder Add-in User Guide Version 1.5.0.x... 1 Contents... 2 1. The LMS365 Learning Module Builder Add-in...

More information

Recording Supervisor Manual Presence Software

Recording Supervisor Manual Presence Software Presence Software Version 9.2 Date: 09/2014 2 Contents... 3 1. Introduction... 4 2. Installation and configuration... 5 3. Presence Recording architectures Operating modes... 5 Integrated... with Presence

More information

Documentation Installation of the PDR code

Documentation Installation of the PDR code Documentation Installation of the PDR code Franck Le Petit mardi 30 décembre 2008 Requirements Requirements depend on the way the code is run and on the version of the code. To install locally the Meudon

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd.

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd. VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com info@flexense.com 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information