Multi-Device Basic. Sample User's Guide. Intel SDK for OpenCL* Applications - Samples. Document Number: US

Size: px
Start display at page:

Download "Multi-Device Basic. Sample User's Guide. Intel SDK for OpenCL* Applications - Samples. Document Number: US"

Transcription

1 Sample User's Guide Intel SDK fr OpenCL* Applicatins - Samples Dcument Number: US

2 Cntents Legal Infrmatin... 3 Abut Multi-Device Basic Sample... 4 Algrithm... 4 OpenCL* Implementatin... 5 System-Level Scenari... 5 Multi-Cntext Scenari... 6 Shared-Cntext Scenari... 7 Chsing an Apprpriate Scenari... 7 Understanding the OpenCL* Perfrmance Characteristics... 8 Saturating Device Capabilities... 8 Wrk-grup Size Cnsideratins... 8 Prject Structure... 8 APIs Used... 9 Cntrlling the Sample... 9 Understanding the Sample Output References

3 Legal Infrmatin Legal Infrmatin INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY, RELATING TO SALE AND/OR USE OF INTEL PRODUCTS INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. A "Missin Critical Applicatin" is any applicatin in which failure f the Intel Prduct culd result, directly r indirectly, in persnal injury r death. SHOULD YOU PURCHASE OR USE INTEL'S PRODUCTS FOR ANY SUCH MISSION CRITICAL APPLICATION, YOU SHALL INDEMNIFY AND HOLD INTEL AND ITS SUBSIDIARIES, SUBCONTRACTORS AND AFFILIATES, AND THE DIRECTORS, OFFICERS, AND EMPLOYEES OF EACH, HARMLESS AGAINST ALL CLAIMS COSTS, DAMAGES, AND EXPENSES AND REASONABLE ATTORNEYS' FEES ARISING OUT OF, DIRECTLY OR INDIRECTLY, ANY CLAIM OF PRODUCT LIABILITY, PERSONAL INJURY, OR DEATH ARISING IN ANY WAY OUT OF SUCH MISSION CRITICAL APPLICATION, WHETHER OR NOT INTEL OR ITS SUBCONTRACTOR WAS NEGLIGENT IN THE DESIGN, MANUFACTURE, OR WARNING OF THE INTEL PRODUCT OR ANY OF ITS PARTS. Intel may make changes t specificatins and prduct descriptins at any time, withut ntice. Designers must nt rely n the absence r characteristics f any features r instructins marked "reserved" r "undefined". Intel reserves these fr future definitin and shall have n respnsibility whatsever fr cnflicts r incmpatibilities arising frm future changes t them. The infrmatin here is subject t change withut ntice. D nt finalize a design with this infrmatin. The prducts described in this dcument may cntain design defects r errrs knwn as errata which may cause the prduct t deviate frm published specificatins. Current characterized errata are available n request. Cntact yur lcal Intel sales ffice r yur distributr t btain the latest specificatins and befre placing yur prduct rder. Cpies f dcuments which have an rder number and are referenced in this dcument, r ther Intel literature, may be btained by calling , r g t: Intel prcessr numbers are nt a measure f perfrmance. Prcessr numbers differentiate features within each prcessr family, nt acrss different prcessr families. G t: Sftware and wrklads used in perfrmance tests may have been ptimized fr perfrmance nly n Intel micrprcessrs. Perfrmance tests, such as SYSmark and MbileMark, are measured using specific cmputer systems, cmpnents, sftware, peratins and functins. Any change t any f thse factrs may cause the results t vary. Yu shuld cnsult ther infrmatin and perfrmance tests t assist yu in fully evaluating yur cntemplated purchases, including the perfrmance f that prduct when cmbined with ther prducts. Intel, Intel lg, Intel Cre, VTune, Xen are trademarks f Intel Crpratin in the U.S. and ther cuntries. * Other names and brands may be claimed as the prperty f thers. OpenCL and the OpenCL lg are trademarks f Apple Inc. used by permissin frm Khrns. Micrsft prduct screen sht(s) reprinted with permissin frm Micrsft Crpratin. Cpyright Intel Crpratin. All rights reserved. Optimizatin Ntice Intel's cmpilers may r may nt ptimize t the same degree fr nn-intel micrprcessrs fr ptimizatins that are nt unique t Intel micrprcessrs. These ptimizatins include SSE2, SSE3, and SSSE3 instructin sets and ther ptimizatins. Intel des nt guarantee the availability, functinality, r effectiveness f any ptimizatin n micrprcessrs nt manufactured by Intel. Micrprcessr-dependent ptimizatins in this prduct are intended fr use with Intel micrprcessrs. Certain ptimizatins nt specific t Intel micrarchitecture are reserved fr Intel micrprcessrs. Please refer t the applicable prduct User and Reference Guides fr mre infrmatin regarding the specific instructin sets cvered by this ntice. Ntice revisin #

4 Abut Multi-Device Basic Sample The Multi-Device Basic sample is an example f utilizing the capabilities f a multi-device system. Such systems might have different hardware setups, fr example: Systems based n CPU and GPU devices, where ne OpenCL device is a regular CPU and anther is an n-chip r a discrete GPU card. HPC systems based n CPU and discrete GPUs r acceleratr devices like Intel Xen Phi cprcessrs. This sample targets systems with multiple Intel Xen Phi cprcessr devices, but its guidelines and methds are als applicable t multi-device systems with CPU and GPU devices, r a CPU and ne Intel Xen Phi cprcessr device. Fr ptimal utilizatin f devices, yu need t reduce idle time by lading multiple devices simultaneusly. The Multi-Device Basic sample exemplifies three basic scenaris f simultaneus utilizatin f multiple devices under the same system: System-level Multi-cntext Shared cntext This sample demnstrates a minimal sequence f steps t keep all devices busy simultaneusly. It cnsists f: A simple synthetic kernel, perating in 1-dimensinal iteratin space. A simple wrk partitining strategy, which cmprises dividing all wrk amng devices equally, regardless f their cmpute capabilities. The sample utilizes n data sharing and therefre n synchrnizatin between the devices. This is a purely functinal sample with n perfrmance instrumentatin and n perfrmance reprted as sample utput. Algrithm The sample calculates a synthetic functin, which is implemented in the kernel, n a pair f input buffers a and b, and puts the resulting values t the utput buffer c. Each buffer cnsists f wrk_size elements. Fr each index i the sample calculates c[i] = f(a[i], b[i]), where i = 0..wrk_size-1 f is a functin, implemented in the kernel. Initial values fr buffer elements are als synthetic: a[i] = i, b[i] = 2*i. The aim f the sample is t demnstrate hw t divide, allcate, share resurces, and lad several devices in the system simultaneusly. The prblem is simplified by excluding brders, hals, r ther data shared between adjacent devices, which helps t mit verlapping between devices during resurce partitining. The sample demnstrates basic steps t saturate multiple devices withut cmplex explanatins f access patterns and ther issues. The Multi-Device Basic sample utilizes a static wrk partitining apprach instead f dynamic lad balancing amng devices. See the ther SDK samples at sftware.intel.cm/en-us/vcsurce/tls/pencl. In the cnsidered scenaris the sample uses cmmn math fr wrk partitining, which is suitable fr the case where the number f data items is much larger than the number f devices. Accrding t this strategy, wrk is divided amng devices evenly, and the nn-dividable piece is assigned t the last device. Fr a case where yu cannt divide data with small granularity, yu need t utilize a different math t distribute the last piece f wrk amng several devices fr better lad balance. 4

5 OpenCL* Implementatin OpenCL* Implementatin The fllwing scenaris are cnsidered in this sample. Scenari names are nt cnventinal. Each name is an alias f the respective scenari in the dcument and sample cde. System-level scenari, where separate devices are picked up by different instances f the same applicatin. Each instance gets its index and recgnizes hw many applicatin instances run simultaneusly t crrectly divide wrk and prcess a specific prtin. Multi-cntext scenari, where ne applicatin instance uses all devices, and each device has its wn OpenCL* cntext. Shared-cntext scenari, where all devices are placed in the same shared cntext and share input and utput buffers using sub-buffers. Refer t the scenari-dedicated sectins in this dcument t understand which scenari best suits yur needs. System-Level Scenari In the system-level scenari, multi-device parallelism is implemented utside f the hst applicatin. Multiple instances f the sample applicatin run simultaneusly under the same system. The fllwing illustrates the system-level scenari: Original data items/wrk space Applicatin instance 1 OpenCL cntext Buffer Cmmand queue Device Hst array Applicatin instance N OpenCL cntext Buffer Cmmand queue Device Hst array Prgram & kernel Prgram & kernel Fig. 1: System-level scenari If yu already have an OpenCL-enabled applicatin with ability t partitin wrk between multiple instances, fr example, thrugh MPI, then yu d nt need t mdify this applicatin t use multiple devices. Just run ne instance per each device. In case yu have an MPI-enabled and OpenCL-enabled applicatin (fr a cluster) that is capable f utilizing ne device, and yu want t utilize a machine with multiple Intel Xen Phi cprcessrs, yu d nt need t make any adjustments in wrk partitining. Run ne applicatin instance per each Intel Xen Phi cprcessr under the same system. Cprcessrs have equal cmpute pwer, which means that the apprach f dividing wrk between devices evenly prvides the desired perfrmance scalability, assuming that the executin time is distributed amng wrk items unifrmly. Using the system-level scenari, yu shuld limit the number f devices fr each applicatin instance externally, using ne f the fllwing methds: 5

6 Setting the OpenCL device type with different values depending n applicatin instance. In such a case, different applicatin instances use different types f devices. Fr example, ne instance uses CPU device, while anther uses the cprcessr device. T set the device type, use the t cmmand-line ptin. Enabling the OFFLOAD_DEVICES envirnment variable n the systems with multiple Intel Xen Phi cprcessrs. OFFLOAD_DEVICES des nt require any special prcessing by applicatins, as the envirnment variable is supprted at OpenCL implementatin level. OFFLOAD_DEVICES limits the Intel Xen Phi cprcessr device visibility t a particular prcess in the system. Cmbinatin: set the device type and enable the OFFLOAD_DEVICES envirnment variable. In such case yu can use a cmbinatin f CPU device and multiple cprcessrs. This sample implements the synthetic algrithm that des nt invlve any inter-device cmmunicatin, s the cde des nt rganize inter-instance interactin. Each applicatin instance wrks individually and independently frm thers. Each instance calculates which wrk items t prcess s that all instances calculate the cmplete result but d nt cllect the resulting values int ne place. Multi-Cntext Scenari In the multi-cntext scenari, ne applicatin instance uses all devices. Yet each device has its wn cntext, s prgrams, kernels, buffers, and ther resurces are nt shared. Yu shuld create the resurces individually fr each device. Yu can share nly the memry allcatin n the hst. Each device explits a separated piece f the allcated hst memry by using its wn buffer, created with CL_MEM_USE_HOST_PTR. Individual paths fr each f the devices start frm almst very beginning, frm the cntext creatin. The same cde is executed multiple times fr different devices. S syntactically, the cde cnsists f a number f lps ver individual devices and queues. Absence f tight synchrnizatin between devices is a cnsequence f cntext separatin. Yu cannt use events frm ne cntext in ther cntexts. S the synchrnizatin that yu can rganize shuld invlve hst-side API calls. This sample explicitly waits fr cmpletin in all queues in lp ver all devices with the clfinish call. The fllwing figure illustrates the multi-cntext scenari. Applicatin instance OpenCL cntext 1 Buffer Cmmand queue Device Original data items/wrk space Hst array OpenCL cntext N Buffer Cmmand queue Device Prgram & kernel Prgram & kernel Fig. 2: Multi-cntext scenari 6

7 OpenCL* Implementatin Shared-Cntext Scenari In the shared-cntext scenari, prgram, kernel and all buffers are shared between all devices and exist in a single OpenCL* cntext. Hwever, t use the utput t the same buffer by multiple devices simultaneusly, yu need t create a nn-verlapping sub-buffer fr each device. See the OpenCL specificatin fr mre infrmatin. The fllwing figure illustrates the shared-cntext scenari: Applicatin instance OpenCL cntext Original data items/wrk space Hst array Buffer Sub-buffer 1 Sub-buffer N Cmmand queue 1 Cmmand queue N Device 1 Device N Prgram & kernel Fig. 3: Shared-cntext scenari scenscenari Yu can als use OpenCL events t synchrnize multiple devices withut hst-side participatin, which is pssible when all cmmand queues cexist in a single cntext. Use this pssibility t wait fr the resulting buffer t becme ready, which is the mment when all devices finish their NDRange cmmands. Specifically, use an array f event in the dependence list fr the clenqueuemapbuffer call. See mre details in the surce cde. T cllect all devices f a specified type inside a single cntext, cnsider the fllwing methds: Call clgetdeviceids, which lists the available devices. Call clcreatecntext t create a cntext fr the available devices. Call clcreatecntextfrmtype directly fr platfrm and device type. Call clgetcntextinf t query the available devices. Querying the list f devices is necessary in all methds as yu need t create a separate cmmand queue fr each device. OpenCL has n API fr creating an array f cmmand queues t simplify the prcess. This sample utilizes the methd with calling clcreatecntextfrmtype. Chsing an Apprpriate Scenari Yu need t cnsider which scenari best suits yur needs. Prefer the system-level scenari if the inter-instance cmmunicatin is nt a bttleneck in yur applicatin. Otherwise, prefer multi- r shared-cntext scenaris, which prvide mre tight 7

8 synchrnizatin capabilities between devices and hence better utilizatin f devices, particularly fr applicatin types that spend a lt f time fr data transfers. In the multi-cntext scenari, individual paths fr each f the devices start frm almst very beginning, frm the cntext creatin in cmparisn t shared-cntext scenari, which prvides mre sharing between devices (cmpare Fig. 2 with Fig. 3). Due t early separatin, multi-cntext scenari has less flexibility, particularly in lad balancing, and lack f tight synchrnizatin between cmmand queues, which requires mre hst participatin in inter-device scheduling. Using the multi-cntext scenari yu can create a buffer fr a dedicated device and avid extra cycles fr allcating (and ptentially duplicating) a buffer in a cntext with multiple devices. This is relevant fr the case when several Intel Xen Phi cprcessr devices are present in the OpenCL cntext, which requires sme extra time t allcate the entire buffer and might nt be suitable fr the sharedcntext scenari. Using the shared-cntext scenari yu can rganize efficient lad balancing amng devices by dynamically chsing sub-buffer sizes withut recreating riginal buffers. Depending n the device type and OpenCL implementatin, the cst f buffer creatin might be higher than the cst f subbuffer creatin, s the dynamic lad balancing apprach can be efficiently implemented with sharedcntext. Understanding the OpenCL* Perfrmance Characteristics Saturating Device Capabilities Yu need t chse an apprpriate wrk partitining scenari t assign enugh wrk t each device. Sme types f devices, like Intel Xen Phi cprcessrs, require a large number f wrk-grups that is scheduled in ne NDRange. If the number f wrk-grups is insufficient, the system may result in device starvatin and lead t lwer perfrmance n multi-device systems. In multi-device cntext scenari, the given amunt f wrk might be enugh t utilize capabilities f ne device, but nt enugh fr several devices. Cnsidering the verhead required fr multi-device partitining, dividing the wrk f ne device int several devices can be slwer than perfrming all wrk n ne device. Wrk-grup Size Cnsideratins T prvide each device with apprpriate glbal size while dividing wrk between devices yu shuld ensure enugh granularity. The glbal size f NDRange enqueued fr the device shuld be a multiple f a predefined value. Yu can query this value using clgetkernelinf with CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE fr a particular kernel. The fixed granularity value satisfies minimal requirements fr each pair f a device and a kernel in a multi-device envirnment, in case the value is used fr all devices. This implies an additinal requirement fr the data partitining scheme used in the applicatin. While in the sample the additinal requirement is nt frced (t keep the surce cde shrter), in a real applicatin the hst lgic shuld fllw the requirement t achieve better perfrmance results. Generally this recmmendatin is implied by the aut-vectrizatin mdule f the cmpiler. See the Intel SDK fr OpenCL Applicatins - Optimizatin Guide fr mre infrmatin. Prject Structure All files, necessary fr sample build and executin, reside at the sample directry (MultiDeviceBasic) and in the cmmn directry f the rt directry, t which yu extract samples. MultiDeviceBasic directry cntains the fllwing files: Surce files: 8

9 APIs Used multidevice.hpp declaratin f main sample functins, which includes the sample scenaris and kernel creatin functin. multidevice.cpp entry pint, cmmand-line parameters definitin, and parsing, selecting amng scenaris and calling ne f them. kernel.cpp creatin f an OpenCL* prgram frm a string; kernel cde is inlined t this file. system.cpp implementatin f the system-level scenari multi.cpp implementatin f the multi-cntext scenari shared.cpp implementatin f the shared-cntext scenari Scripts t run the system-level scenari with different hardware setups: cpu+mic.system-level.sh runs the system-level scenari with tw applicatin instances: ne instance is fr CPU OpenCL device, and anther fr the Intel Xen Phi cprcessr OpenCL device. multimic.system-level.sh runs the system-level scenari with several applicatin instances, each instance is mapped fr the dedicated Intel Xen Phi cprcessr OpenCL device. cpu+multimic.system-level.sh runs the system-level scenari with CPU OpenCL device and with several applicatin instances, each instance is mapped fr a dedicated Intel Xen Phi cprcessr OpenCL device. NOTE: Multi-cntext and shared-cntext scenaris are executed directly by running the binary file with a specific cmmand-line ptin withut using any script files. Refer t the Cntrlling the Sample sectin fr mre infrmatin. Other files: Makefile builds the sample binary. README.TXT instructin n building and running the sample. Als prvides infrmatin n understanding the sample utput. APIs Used This sample uses the fllwing OpenCL hst functins: clbuildprgram clcreatebuffer clcreatecmmandqueue clcreatecntext clcreatecntextfrmtype clcreatekernel clcreateprgramwithsurce clcreatesubbuffer clenqueuemapbuffer clenqueuendrangekernel clenqueueunmapmemobject clfinish clflush clgetdeviceids clgetdeviceinf clgetplatfrmids clgetplatfrminf clreleasecmmandqueue clreleasecntext clreleasekernel clreleasememobject clreleaseprgram clsetkernelarg clwaitfrevents Cntrlling the Sample Yu can run the fllwing files in the cmmand line: 9

10 multidevice, the sample binary file, which is a cnsle applicatin. <hardware_setup>.system-level.sh, which is a script fr running the system-level scenari in varius hardware cnfiguratins, where <hardware_setup> is the placehlder fr a hardware setup name. The multi-cntext and the shared-cntext scenaris are executed directly by calling the sample binary with a particular --cntext cmmand-line ptin. Yu can chse platfrm, devices, and ther parameters thrugh cmmand line when calling the executable. T view all parameters, run the help cmmand:./multidevice h Help cmmand shws the fllwing help text: Optin Descriptin -h, --help -p, --platfrm number-r-string -t, --type all cpu gpu acc default <OpenCL cnstant fr device type> -c, --cntext system multi shared -s, --size <integer> --instance-cunt <integer> --instance-index <integer> Shw this help text and exit. Select platfrm, devices f which are used. Select the device by type n which the OpenCL kernel is executed. Type f the multi-device scenari used: with system-level partitining, with multiple devices and multiple cntexts fr each device r ne shared cntext fr all devices. Fr ne device in the system, system = multiple = shared. Set input/utput array size. Applicable fr system-level scenari nly. Number f applicatin instances which will participate in system-level scenari. T identify particular instance, use --instance-index key. Applicable fr system-level scenari nly. Index f instance amng all participating applicatin instances which is set by --instance-cunt key. Understanding the Sample Output The fllwing is an example f pssible multidevice binary utput fr the shared cntext with CPU and Intel Xen Phi cprcessr devices: $./multidevice Platfrms (1): [0] Intel(R) OpenCL [Selected] Executing shared-cntext scenari. Cntext was created successfully. Prgram was created successfully. Prgram was built successfully. Number f devices in the cntext: 2. Successfully created cmmand queue fr device 0. Successfully created cmmand queue fr device 1. Detected minimal alignment requirement suitable fr all devices: 128 bytes. Required memry amunt fr each buffer: bytes. Buffers were created successfully. Sub-buffers fr device 0 were created successfully. Sub-buffers fr device 1 were created successfully. Kernel fr device 0 was enqueued successfully. Kernel fr device 1 was enqueued successfully. All devices finished executin. 10

11 References First, the sample utputs all available platfrms and picks ne f them (line with [Selected]). Then it reprts, which scenari is running. In the example, multidevice binary runs with n cmmand-line parameters, s it executes accrding t the shared-cntext scenari by default. Then sample reprts each significant step f the OpenCL cde executin and ends when all devices finish wrking. Nte that the sample reprts n perfrmance measures. When running the system-level scripts, several multidevice binaries run at the same time. T avid utput mix and crruptin, the utput frm each individual run frwards t a file. Output files have names, frmed by name f the running script, and device type and number, particularly: Fr the cpu+mic.system-level.sh script: cpu+mic.system-level.cpu.ut -- fr CPU device cpu+mic.system-level.acc.ut -- fr Intel Xen Phi cprcessr device Fr the multimic.system-level.sh script: multimic.system-level.acc-i.ut -- fr I-th Intel Xen Phi device, where I in {0..number f Intel Xen Phi cprcessr devices minus ne} Fr cpu+multimic.system-level.sh script: cpu+multimic.system-level.cpu.ut -- fr CPU device cpu+multimic.system-level.acc-i.ut -- fr I-th Intel Xen Phi cprcessr device References Intel SDK fr OpenCL Applicatins Optimizatin Guide 11

Overview. Features. Intel Media SDK 2014 Audio Library has API version 1.8. The following audio formats are supported: Decoding

Overview. Features. Intel Media SDK 2014 Audio Library has API version 1.8. The following audio formats are supported: Decoding Intel Media Sftware Develpment Kit 2014 Audi Library Release Ntes (Versin 5.0.337.79303) Overview Features System Requirements Package Cntents Installatin Knwn Limitatins Legal Infrmatin Overview The Intel

More information

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the.

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the. 1 f 22 26/09/2016 15:58 Mdule Cnsideratins Cntents: Lessn 1: Lessn 2: Mdule Befre yu start with almst any planning. apprpriately. As benefit f gd T appreciate architecture. it places n the understanding

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

Computer Organization and Architecture

Computer Organization and Architecture Campus de Gualtar 4710-057 Braga UNIVERSIDADE DO MINHO ESCOLA DE ENGENHARIA Departament de Infrmática Cmputer Organizatin and Architecture 5th Editin, 2000 by William Stallings Table f Cntents I. OVERVIEW.

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

It has hardware. It has application software.

It has hardware. It has application software. Q.1 What is System? Explain with an example A system is an arrangement in which all its unit assemble wrk tgether accrding t a set f rules. It can als be defined as a way f wrking, rganizing r ding ne

More information

Summary. Server environment: Subversion 1.4.6

Summary. Server environment: Subversion 1.4.6 Surce Management Tl Server Envirnment Operatin Summary In the e- gvernment standard framewrk, Subversin, an pen surce, is used as the surce management tl fr develpment envirnment. Subversin (SVN, versin

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

B Tech Project First Stage Report on

B Tech Project First Stage Report on B Tech Prject First Stage Reprt n GPU Based Image Prcessing Submitted by Sumit Shekhar (05007028) Under the guidance f Prf Subhasis Chaudhari 1. Intrductin 1.1 Graphic Prcessr Units A graphic prcessr unit

More information

CSE 3320 Operating Systems Synchronization Jia Rao

CSE 3320 Operating Systems Synchronization Jia Rao CSE 3320 Operating Systems Synchrnizatin Jia Ra Department f Cmputer Science and Engineering http://ranger.uta.edu/~jra Recap f the Last Class Multiprcessr scheduling Tw implementatins f the ready queue

More information

Overview of Data Furnisher Batch Processing

Overview of Data Furnisher Batch Processing Overview f Data Furnisher Batch Prcessing Nvember 2018 Page 1 f 9 Table f Cntents 1. Purpse... 3 2. Overview... 3 3. Batch Interface Implementatin Variatins... 4 4. Batch Interface Implementatin Stages...

More information

An Introduction to Crescendo s Maestro Application Delivery Platform

An Introduction to Crescendo s Maestro Application Delivery Platform An Intrductin t Crescend s Maestr Applicatin Delivery Platfrm Intrductin This dcument is intended t serve as a shrt intrductin t Crescend s Maestr Platfrm and its cre features/benefits. The dcument will

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory Technical Paper Installing and Cnfiguring Envirnment Manager in a Grid Envirnment with a Shared Cnfiguratin Directry Last Mdified: January 2018 Release Infrmatin Cntent Versin: January 2018. Trademarks

More information

HP Server Virtualization Solution Planning & Design

HP Server Virtualization Solution Planning & Design Cnsulting & Integratin Infrastructure Services HP Server Virtualizatin Slutin Planning & Design Service descriptin Hewlett-Packard Cnsulting & Integratin Infrastructure Cnsulting Packaged Services (HP

More information

Dell EqualLogic PS Series Arrays: Expanding Windows Basic Disk Partitions

Dell EqualLogic PS Series Arrays: Expanding Windows Basic Disk Partitions TECHNICAL REPORT Dell EqualLgic PS Series Arrays: Expanding Windws Basic Disk Partitins ABSTRACT This Technical Reprt describes hw t expand Micrsft Windws basic disk vlumes after increasing the size f

More information

Maximo Reporting: Maximo-Cognos Metadata

Maximo Reporting: Maximo-Cognos Metadata Maxim Reprting: Maxim-Cgns Metadata Overview...2 Maxim Metadata...2 Reprt Object Structures...2 Maxim Metadata Mdel...4 Metadata Publishing Prcess...5 General Architecture...5 Metadata Publishing Prcess

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents In this sectin, include a table f cntents (TOC) f all headings. After yu have finished

More information

SAP Business One Hardware Requirements Guide

SAP Business One Hardware Requirements Guide Hardware Requirements Guide Dcument Versin: 1.13 2018-02-02 Release Family 9 Typgraphic Cnventins Type Style Example Descriptin Wrds r characters quted frm the screen. These include field names, screen

More information

Because this underlying hardware is dedicated to processing graphics commands, OpenGL drawing is typically very fast.

Because this underlying hardware is dedicated to processing graphics commands, OpenGL drawing is typically very fast. The Open Graphics Library (OpenGL) is used fr visualizing 2D and 3D data. It is a multipurpse pen-standard graphics library that supprts applicatins fr 2D and 3D digital cntent creatin, mechanical and

More information

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

Integration Framework for SAP Business One

Integration Framework for SAP Business One Integratin Framewrk fr SAP Business One DIPrxy Cnfiguratin PUBLIC Glbal Rll-ut Octber 2018, B Zha TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 3 3 CONFIGURATION... 5 3.1 Services in Service

More information

Eastern Mediterranean University School of Computing and Technology Information Technology Lecture2 Functions

Eastern Mediterranean University School of Computing and Technology Information Technology Lecture2 Functions Eastern Mediterranean University Schl f Cmputing and Technlgy Infrmatin Technlgy Lecture2 Functins User Defined Functins Why d we need functins? T make yur prgram readable and rganized T reduce repeated

More information

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2012 Intel Corporation All Rights Reserved Document Number: 327281-001US

More information

Remoting SDK Release Notes

Remoting SDK Release Notes Remting SDK Release Ntes Release 2018 R2 Dcument Versin: 1.0 10 August 2018 This dcument is a cmpilatin f sftware and sftware dcumentatin defects, and sftware specificatin clarificatins, updates, and changes.

More information

Quick Guide on implementing SQL Manage for SAP Business One

Quick Guide on implementing SQL Manage for SAP Business One Quick Guide n implementing SQL Manage fr SAP Business One The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage fr SAP B1 SQL Server databases. SQL Manage is a ttal

More information

Kaltura MediaSpace Installation and Upgrade Guide. Version: 5.0

Kaltura MediaSpace Installation and Upgrade Guide. Version: 5.0 Kaltura MediaSpace Installatin and Upgrade Guide Versin: 5.0 Kaltura Business Headquarters 5 Unin Square West, Suite 602, New Yrk, NY, 10003, USA Tel.: +1 800 871 5224 Cpyright 2013 Kaltura Inc. All Rights

More information

Software Engineering

Software Engineering Sftware Engineering Chapter #1 Intrductin Sftware systems are abstract and intangible. Sftware engineering is an engineering discipline that is cncerned with all aspects f sftware prductin. Sftware Prducts

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment Technical Paper Installing and Cnfiguring SAS Envirnment Manager in a SAS Grid Envirnment Last Mdified: Octber 2016 Release Infrmatin Cntent Versin: Octber 2016. Trademarks and Patents SAS Institute Inc.,

More information

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide MediaTek LinkIt Develpment Platfrm fr RTOS Memry Layut Develper's Guide Versin: 1.1 Release date: 31 March 2016 2015-2016 MediaTek Inc. MediaTek cannt grant yu permissin fr any material that is wned by

More information

Parallel Processing in NCAR Command Language for Performance Improvement

Parallel Processing in NCAR Command Language for Performance Improvement Parallel Prcessing in NCAR Cmmand Language fr Perfrmance Imprvement Ping Gu, University f Wyming Mentr: Wei Huang, NCAR C- Mentr: Dave Brwn, NCAR August 1, 2013 Intrductin and Mtivatin ² The NCAR Cmmand

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.0 cntaining MySabre API

More information

Due Date: Lab report is due on Mar 6 (PRA 01) or Mar 7 (PRA 02)

Due Date: Lab report is due on Mar 6 (PRA 01) or Mar 7 (PRA 02) Lab 3 Packet Scheduling Due Date: Lab reprt is due n Mar 6 (PRA 01) r Mar 7 (PRA 02) Teams: This lab may be cmpleted in teams f 2 students (Teams f three r mre are nt permitted. All members receive the

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.1 cntaining MySabre API

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

BlackBerry Server Installation and Upgrade Service

BlackBerry Server Installation and Upgrade Service Server and Upgrade Service Prgram Descriptin ( Install and Upgrade Service Prgram Descriptin ) NOTE: This dcument includes all attached Annexes, is prvided fr infrmatinal purpses nly, and des nt cnstitute

More information

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT)

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT) DS-5 Release Ntes (build 472 dated 2010/04/28 08:33:48 GMT) Intrductin This is a trial release f Keil Develpment Studi 5 (DS-5). DS-5 cntains tls fr building and debugging C/C++ and ARM assembly language

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 1 - Calculatr Intrductin In this lab yu will be writing yur first

More information

ECE 545 Project Deliverables

ECE 545 Project Deliverables Tp-level flder: _ Secnd-level flders: 1_assumptins 2_blck_diagrams 3_interface 4_ASM_charts 5_surce_cdes 6_verificatin 7_timing_analysis 8_results 9_benchmarking 10_bug_reprts

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

Assignment #5: Rootkit. ECE 650 Fall 2018

Assignment #5: Rootkit. ECE 650 Fall 2018 General Instructins Assignment #5: Rtkit ECE 650 Fall 2018 See curse site fr due date Updated 4/10/2018, changes nted in green 1. Yu will wrk individually n this assignment. 2. The cde fr this assignment

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

CS4500/5500 Operating Systems Synchronization

CS4500/5500 Operating Systems Synchronization Operating Systems Synchrnizatin Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Recap f the Last Class Multiprcessr scheduling Tw implementatins f the ready

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/3/2017 Cpyright Infrmatin Cpyright 2017 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

CMC Blade BIOS Profile Cloning

CMC Blade BIOS Profile Cloning This white paper describes the detailed capabilities f the Chassis Management Cntrller s Blade BIOS Prfile Clning feature. Authr Crey Farrar This dcument is fr infrmatinal purpses nly and may cntain typgraphical

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Software Toolbox Extender.NET Component. Development Best Practices

Software Toolbox Extender.NET Component. Development Best Practices Page 1 f 16 Sftware Tlbx Extender.NET Cmpnent Develpment Best Practices Table f Cntents Purpse... 3 Intended Audience and Assumptins Made... 4 Seeking Help... 5 Using the ErrrPrvider Cmpnent... 6 What

More information

Project #1 - Fraction Calculator

Project #1 - Fraction Calculator AP Cmputer Science Liberty High Schl Prject #1 - Fractin Calculatr Students will implement a basic calculatr that handles fractins. 1. Required Behavir and Grading Scheme (100 pints ttal) Criteria Pints

More information

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation CdeSlice View CdeSlice Live Dcumentatin Scripting is ne f the mst pwerful extensibility features in SSIS, allwing develpers the ability t extend the native functinality within SSIS t accmmdate their specific

More information

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist This checklist is used t prvide guidance and clarificatin n aspects f the auxillary Startup Service (G2949CA) including Security Pack Installatin and Familiarizatin f yur Agilent 2100 Bianalyzer System

More information

UML : MODELS, VIEWS, AND DIAGRAMS

UML : MODELS, VIEWS, AND DIAGRAMS UML : MODELS, VIEWS, AND DIAGRAMS Purpse and Target Grup f a Mdel In real life we ften bserve that the results f cumbersme, tedius, and expensive mdeling simply disappear in a stack f paper n smene's desk.

More information

Lab 5 Sorting with Linked Lists

Lab 5 Sorting with Linked Lists UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C WINTER 2013 Lab 5 Srting with Linked Lists Intrductin Reading This lab intrduces

More information

DELL EMC VxRAIL vcenter SERVER PLANNING GUIDE

DELL EMC VxRAIL vcenter SERVER PLANNING GUIDE WHITE PAPER - DELL EMC VxRAIL vcenter SERVER PLANNING GUIDE ABSTRACT This planning guide discusses guidance fr the varius vcenter Server deplyment ptins supprted n VxRail Appliances. Nvember 2017 TABLE

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

FIREWALL RULE SET OPTIMIZATION

FIREWALL RULE SET OPTIMIZATION Authr Name: Mungle Mukupa Supervisr : Mr Barry Irwin Date : 25 th Octber 2010 Security and Netwrks Research Grup Department f Cmputer Science Rhdes University Intrductin Firewalls have been and cntinue

More information

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on HP ProLiant Server and Microsoft SQL Server 2005

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on HP ProLiant Server and Microsoft SQL Server 2005 Perfrmance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applicatins n HP PrLiant Server and Micrsft SQL Server 2005 An Oracle White Paper Released Octber 2005 Perfrmance and Scalability Benchmark:

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager SEP 2 0 1 8 V 4 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites... 1

More information

Cisco Tetration Analytics, Release , Release Notes

Cisco Tetration Analytics, Release , Release Notes Cisc Tetratin Analytics, Release 1.102.21, Release Ntes This dcument describes the features, caveats, and limitatins fr the Cisc Tetratin Analytics sftware. Additinal prduct Release ntes are smetimes updated

More information

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills The Internet and Cmputing Cre Certificatin Guide cnsists f 64 Lessns, with lessn bjectives, summary and ten review questins. IC³ bjectives are easily lcated by using symbls thrughut the curseware. Curse

More information

GPA: Plugin for OS Command With Solution Manager 7.1

GPA: Plugin for OS Command With Solution Manager 7.1 GPA: Plugin fr OS Cmmand With Slutin Manager 7.1 The plugin OS Cmmand can be used in yur wn guided prcedures. It ffers the pssibility t execute pre-defined perating system cmmand n each hst part f the

More information

Common Language Runtime

Common Language Runtime Intrductin t.net framewrk.net is a general-purpse sftware develpment platfrm, similar t Java. Micrsft intrduced.net with purpse f bridging gap between different applicatins..net framewrk aims at cmbining

More information

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on HP Integrity Server and Microsoft SQL Server 2005

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on HP Integrity Server and Microsoft SQL Server 2005 Perfrmance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applicatins n HP Integrity Server and Micrsft SQL Server 2005 An Oracle White Paper Released Octber 2005 Perfrmance and Scalability

More information

App Orchestration 2.6

App Orchestration 2.6 App Orchestratin 2.6 Terminlgy in App Orchestratin 2.6 Last Updated: July 8, 2015 Page 1 Terminlgy Cntents Elements f App Orchestratin... 3 Dmains... 3 Multi-Datacenter Deplyments... 4 Delivery Sites...

More information

Aras Innovator 11. Package Import Export Utilities

Aras Innovator 11. Package Import Export Utilities Aras Innvatr 11 Package Imprt Exprt Utilities Dcument #: 11.0.02015040601 Last Mdified: 1/4/2018 Aras Innvatr 11 Package Imprt Exprt Utilities Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights

More information

This document lists hardware and software requirements for Connected Backup

This document lists hardware and software requirements for Connected Backup HPE Cnnected Backup Versin 8.8.6.1 Matrix Revisin 0 This dcument lists hardware and sftware requirements fr Cnnected Backup 8.8.6.1. Data Center This sectin lists the installatin requirements fr the Cnnected

More information

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018 Release Ntes Versin: - v18.13 Fr ClickSftware StreetSmart September 22, 2018 Cpyright Ntice Cpyright 2018 ClickSftware Technlgies Ltd. All rights reserved. N part f this publicatin may be cpied withut

More information

DELL EMC PERSONALIZED SUPPORT SERVICES

DELL EMC PERSONALIZED SUPPORT SERVICES DELL EMC PERSONALIZED SUPPORT SERVICES Optimize yur Dell EMC investment based n yur unique requirements ESSENTIALS Dell EMC Persnalized Supprt Services: Custmize and enhance yur Dell EMC Custmer Service

More information

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices HPE LadRunner Best Practices Series LadRunner 12.50 Upgrade Best Practices Dcument publicatin date: Nvember 2015 Cntents 1. Intrductin... 3 Overview... 3 Audience... 3 2. Preparatin... 3 Backup assets...

More information

RELEASE NOTES FOR PHOTOMESH 7.3.1

RELEASE NOTES FOR PHOTOMESH 7.3.1 RELEASE NOTES FOR PHOTOMESH 7.3.1 Abut PhtMesh Skyline s PhtMesh fully autmates the generatin f high-reslutin, textured, 3D mesh mdels frm standard 2D phtgraphs, ffering a significant reductin in cst and

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on IBM eserver p690 and IBM DB2 UDB on eserver p5 570

Performance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applications on IBM eserver p690 and IBM DB2 UDB on eserver p5 570 Perfrmance and Scalability Benchmark: Siebel CRM Release 7.7 Industry Applicatins n IBM eserver p690 and IBM DB2 UDB n eserver p5 570 An Oracle White Paper Released March 2005 Perfrmance and Scalability

More information

Using SPLAY Tree s for state-full packet classification

Using SPLAY Tree s for state-full packet classification Curse Prject Using SPLAY Tree s fr state-full packet classificatin 1- What is a Splay Tree? These ntes discuss the splay tree, a frm f self-adjusting search tree in which the amrtized time fr an access,

More information

Hitachi Server Adapter for the SAP HANA Cockpit

Hitachi Server Adapter for the SAP HANA Cockpit Hitachi Server Adapter fr the SAP HANA Cckpit v01.0.0 Release Ntes Cntents Abut This Dcument... 2 Intended Audience... 2 Getting Help... 2 Abut Release v01.0.0... 2 Supprted Hardware and Sftware... 3 Required

More information

TL 9000 Quality Management System. Measurements Handbook. SFQ Examples

TL 9000 Quality Management System. Measurements Handbook. SFQ Examples Quality Excellence fr Suppliers f Telecmmunicatins Frum (QuEST Frum) TL 9000 Quality Management System Measurements Handbk Cpyright QuEST Frum Sftware Fix Quality (SFQ) Examples 8.1 8.1.1 SFQ Example The

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Intro. to Computer Repair & Advanced Computer Repair

Intro. to Computer Repair & Advanced Computer Repair Intr. t Cmputer Repair & Advanced Cmputer Repair Grades 10-12 Draft Feb. 2004 Killingly Public Schls COMPUTER REPAIR Installatin, Cnfiguratin and Upgrading CONTENT STANDARD 9-12 C.R 1: The student will

More information

CounterSnipe Software Installation Guide Software Version 10.x.x. Initial Set-up- Note: An internet connection is required for installation.

CounterSnipe Software Installation Guide Software Version 10.x.x. Initial Set-up- Note: An internet connection is required for installation. CunterSnipe Sftware Installatin Guide Sftware Versin 10.x.x CunterSnipe sftware installs n any system cmpatible with Ubuntu 14.04 LTS server which is supprted until 2019 Initial Set-up- Nte: An internet

More information

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: www.inf-trek.cm CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER Curse 10964B; Duratin: 5 Days; Instructr-led WHAT YOU WILL LEARN This curse

More information

DocAve 6 Granular Backup and Restore

DocAve 6 Granular Backup and Restore DcAve 6 Granular Backup and Restre User Guide Service Pack 3 Revisin H Issued August 2013 1 Table f Cntents Abut DcAve Granular Backup and Restre... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/11/2018 Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

CS4500/5500 Operating Systems Computer and Operating Systems Overview

CS4500/5500 Operating Systems Computer and Operating Systems Overview Operating Systems Cmputer and Operating Systems Overview Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Ref. MOS4E, OS@Austin, Clumbia, UWisc Overview Recap

More information

Lab 0: Compiling, Running, and Debugging

Lab 0: Compiling, Running, and Debugging UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 0: Cmpiling, Running, and Debugging Intrductin Reading This is the

More information

Oracle Database 11g Replay: The In-built Recorder for Real Application Testing

Oracle Database 11g Replay: The In-built Recorder for Real Application Testing Oracle Database 11g Replay: The In-built Recrder fr Real Applicatin Testing Amaresh Mandal Infsys Technlgies Ltd Intrductin Oracle Database 11g intrduced a new feature Database Replay which helps in perfrming

More information

OVAL Language Design Document

OVAL Language Design Document OVAL Language Design Dcument Versin 5.1 2006 The MITRE Crpratin. All rights reserved. Intrductin...3 OVAL Overview...3 Implementatin f the Language...3 OVAL Definitin Schema...4 ...4 ...4

More information

Project Extranet User Guide

Project Extranet User Guide Prject Extranet User Guide Drafted by: Francisc Galleg (fgalleg@ua.es) - UA Pedr Caselles (pcaselles@ua.es) - UA Raul Pamplega (rpamplega@ua.es) - UA 1 Table f cntents: 1. EXTRANET USER GUIDE 3 2. INTRODUCTION

More information

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2 Réf. ThmX-NT-SI-CC001 Table f Cntents Sftware Technical Specificatins fr ThmX Authr : Philippe Page 1 / 9 1.INTRODUCTION... 2 2.TECHNICAL REQUIREMENTS... 2 3.DOCUMENTATION REQUIREMENTS... 4 4.COMPUTING

More information

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools.

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools. Q.1 What is Trubleshting Tls? List their types? Trubleshting f netwrk prblems is find and slve with the help f hardware and sftware is called trubleshting tls. Trubleshting Tls - Hardware Tls They are

More information

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern Design Patterns By Võ Văn Hải Faculty f Infrmatin Technlgies HUI Cllectinal Patterns Sessin bjectives Intrductin Cmpsite pattern Iteratr pattern 2 1 Intrductin Cllectinal patterns primarily: Deal with

More information

TDR and Trend Micro. Integration Guide

TDR and Trend Micro. Integration Guide TDR and Trend Micr Integratin Guide i WatchGuard Technlgies, Inc. TDR and Trend Micr Deplyment Overview Threat Detectin and Respnse (TDR) is a cllectin f advanced malware defense tls that crrelate threat

More information

Mapping between DFDL 1.0 Infoset and XML Data Model

Mapping between DFDL 1.0 Infoset and XML Data Model Stephen M Hansn (IBM) Mapping between DFDL 1.0 Infset and XML Data Mdel Status f This Dcument This wrking draft dcument prvides infrmatin t the OGF cmmunity n the Data Frmat Descriptin Language (DFDL)

More information

WinEst 15.2 Installation Guide

WinEst 15.2 Installation Guide WinEst 15.2 Installatin Guide This installatin guide prvides yu with step-by-step instructins n hw t install r upgrade WinEst. Fr a successful installatin, ensure that all machines meet the requirements.

More information

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015 Functinal Descriptin and Specificatins Versin: 1.1 March 20, 2015 SNMP Agent Simple Netwrk Management Prtcl Optin S fr IE and PM Mdules Supplement t Functinal Descriptin and Specificatins f RUB Ethernet

More information