Hierarchal Testbench Configuration Using uvm_config_db
|
|
|
- Alexandrina Barton
- 9 years ago
- Views:
Transcription
1 White Paper Hierarchal Testbench Configuration Using uvm_config_db June 2014 Authors Hannes Nurminen Professional Services, Synopsys Satya Durga Ravi Professional Services, Synopsys Abstract SoC designs have become extremely complex as more and more IP blocks are integrated into them. This increases the verification challenge manifold in terms of configuration and data handling, as well as architecting and maintaining a large verification ironment. Hence it has become very important to create a robust and reusable testbench using a proven methodology that does not just facilitate but also improves the efficiency in verifying different configurations of the device under test (DUT). Accellera Systems Initiative s Universal Verification Methodology (UVM), a stable and widely used methodology for architecting testbenches for verification of complex designs helps mitigate these verification challenges to create a scalable, robust and reusable test ironment. UVM provides a vast of macro, policy and base classes that help facilitate the creation of these testbenches, including an easy way to pass objects and variables across testbench hierarchy. For engineers who are new to verification methodologies or are in the process of adopting UVM, this paper focuses on the UVM configuration mechanism uvm _ config _ db, which helps in passing different class properties across hierarchy testbench components. Through the use of examples, the usage, techniques, and limitations of uvm _ config _ db are explained. Introduction To address the needs of today s verification architecture, a hierarchical up of components is necessary to easily move or share configurations and other parameters across different testbench components. To enable this, UVM provides the infrastructure to maintain a database of objects and variables that can be populated and accessed using strings. This is achieved using the UVM syntax uvm _ config _ db. Using uvm _ config _ db, objects can share the handle to their data members with other objects. Other testbench components can get access to the object without knowing where it exists in the hierarchy. It s almost like making some class variables global or public. Any testbench component can place handles and get handles to objects. In the database, handles are identified by assigned type and name. Primarily there are two uvm _ config _ db functions, () and get(). Any verification component using () gives others access to the object it has created and controls which components have visibility to the object it has shared. The object can be shared globally or made available to one or more specific testbench components. Verification components using get() check if there is a shared handle matching the used parameters. The get() function defines the object type, the name and hierarchical path to the object searched for. How to Use It Different Syntax and Operation Explicit () and get() call functions are how you interact with the uvm _ config _ db. The uvm _ config _ db class functions are static, so they must be called using the :: operator.
2 2 uvm _config _db#(<type>)::(uvm _component cntxt, 3 string inst _name, 4 string field _name, 5 <type> value) 6 7 uvm _config _db#(<type>)::get(uvm _component cntxt, 8 string inst _name, 9 string field _name, 10 ref value) Figure 1: () and get() function syntax cntxt and inst _ name are used to specify the storage location or address of the object handle. When used properly these parameters define the hierarchical path to the object data. field _ name is the name for the object. It does not have to match the object s actual name in the source code. Objects using () and get() must use exactly the same name, otherwise the receiving party (get()) will fail to find the object from uvm _ config _ db. value is the actual object handle shared through the uvm _ config _ db. Multiple recipients accessing an object via get(), will access the same object. <type> is used as a parameter for the uvm _ config _ db class to identify the object from the uvm _ config _ db. <type> which may be either an integral or string, is the class name of the value. The exception is with enumerated type variables which must use int otherwise the () won t work as expected. 13 typedef enum {single,incr,wrap4,incr4,wrap8,incr8,wrap16,incr16}hburst _t 14 hburst _t hburst; 15 uvm _config _db#(int)::(this, a, hburst,incr); Figure 2: config_db for enum type The () specifies the address (cntxt & inst _ name) where the object handle is stored to control the recipient(s) of the object. The get() has the same flexibility, and can freely select from where the information is to be fetched. In practice get() can be used to fetch an object destined to any component in the hierarchy. Typically for () and get(), this is used in the cntxt field to specify the current instance/scope. () uses inst _ name to address the object to the appropriate sub-block in the hierarchy. get() often uses empty ( ) inst _ name, since it typically is getting the objects destined for itself. 5 uvm _config _db#(int)::(this, my _subblock _a, max _cycles,max _cycles) 6 uvm _config _db#(int)::get(this,, max _cycles,max _cycles) Figure 3: () and get() typical use uvm _ config _ db has two additional functions exists() and wait _ modified(). exists() verifies that the defined variable is found in the uvm _ config _ db. The wait _ modified() function blocks execution until the defined variable is accessed with the () call. 2 uvm _config _db#(int)::exists(this, my _subblock _a, max _cycles ) 3 uvm _config _db#(int)::wait _modified(this, my _subblock _a, max _cycles ) Figure 4: exists() and wait_modified() typical use Hierarchal Testbench Configuration Using uvm_config_db 2
3 Automatic Configuration UVM also offers build-time configuration of uvm _ component (and extended) classes utilizing uvm _ config _ db. In automatic configuration, it is sufficient to call () from an upper layer in the hierarchy and the get() will automatically execute at build time without requiring an explicit call. Automatic configuration utilizes the uvm _ config _ db feature under the hood to pass the configuration values from higher level testbench components in the hierarchy to its lower level components. For automatic configuration to work there are two important requirements: ``The variable or object must have the appropriate FLAG in uvm _ field _ * macros ``super() must be called in build _ phase() 3 class agents extends uvm _ agent; 4 int i4; 5 `uvm _ component _ utils _ begin (agent) 6 `uvm _ field _ int (i4, UVM _ ALL _ ON) 7 `uvm _ component _ utils _ end 8 9 virtual function void build _ phase(uvm _ phase phase); 10 super.build _ phase(phase); endfunction endclass Once the component properties have the uvm _ field _ * declaration(s) in place with the appropriate FLAG(s), the macro provides the _ * _ local functionality and super.build _ phase() calls the apply _ config _ tings() method under the hood. The apply _ config _ tings() method searches for all appropriate config tings matching this component s instance and for each match, the appropriate _ * _ local method is called using the matching uvm _ config _ db ting s field _ name and value. The super.build _ phase() method may be replaced with the apply _ config _ tings() method however it is recommended to use the super.build _ phase() method. 15 class agent extends uvm _ agent; 16 int i4; 17 uvm _ component _ utils _ begin(agent) 18 `uvm _ field _ int (i4, UVM _ ALL _ ON) 19 uvm _ component _ utiles _ end 20 virtual function void build _ phase(uvm _ phase phase); 21 apply _ config _ tings(1); //No super.build _ phase(phase) endfunction endclass The implicit get() method call will not work in the following instances: ``Missing uvm _ field _ * macro ``FLAG is to UVM _ READONLY ``Missing super.build _ phase() or apply _ config _ tings() in build _ phase() Below are log messages generated during the simulation phase because of an explicit apply _ config _ tings() function call: UVM _ 0:.name _ agent _ 1 [CFGAPL] applying configuration tings UVM _ 0:.name _ agent _ 1 [CFGAPL] applying configuration to field i4 To the value for i4 of the above agent, would have the build _ phase() below: 3 function void build _ phase (uvm _ phase phase); 4 agent _ 1 = agent::type _ id::create( name _ agent _ 1, this); 5 uvm _ component _ db#(int)::(this, name _ agent _ 1, i4, 1111); 6 endfunction Hierarchal Testbench Configuration Using uvm_config_db 3
4 During the build phase of the simulation the agent object s i4 variable would get value It is important to note that automatic configuration happens only at build phase. Command Line Compilation and simulation time are the major contributors to verification overhead. The ability to change the configuration or parameters without being forced to recompile is critical. The UVM class uvm _ cmdline _ processor provides a mechanism to capture the command line argument and pass to verification components the testcase name, verbosity, configuration and other attributes. Configuration overriding can only be done from the command line for integer and string using the following: +uvm config _ int=<comp>,<filed>,<value> +uvm config _ string=<comp>,<field>,<value> There is no way to override the object from the command line, because uvm _ object cannot be passed to the simulation. When using the command line argument to the configuration, make sure that the <type> used in uvm _ config _ db () and get() functions is uvm_bitstream_t for integer and the <type> for string is as shown below: 2 class extends uvm _ ; 3 int a; 4 string color; function new(string name, uvm _ component parent); 8 super.new(name, parent); 9 endfunction virtual function void build _ phase(uvm _ phase parent); 12 super.build _ phase (phase); 13 if(!uvm _ config _ db #(uvm_bitstream_t)::get(this,, a, a)) 14 `uvm _ fatal( GET _ NOTSUCC, Get is not successful for a. ); 15 if(!uvm _ config _ db #(string)::get(this,, color, color)) 16 `uvm _ fatal( GET _ NOTSUCC, Get is not successful for color. ); 17 `uvm _ info( GET _ VALUE, $psprintf ( The value of a = %d and color = %s,a,color),uvm _ LOW); 18 endfunction endclass class test extends uvm _ test; 24 int a = 2; 25 string color = blue ; 26 _ i; virtual function void build _ phase(uvm _ phase phase); 30 super.build _ phase (phase); 31 _ i = :type _ id::create( _ i, this); 32 uvm _ config _ db#(uvm_bitstream_t)::(this, _ i, a, a); 33 uvm _ config _ db#(string)::(this, _ i, color, color); 34 endfunction endclass The command line argument for the example above is: <simulation command> +UVM _ TESTNAME=test +uvm config _ int=uvm _ test _ top. _ i, a, 6 +uvm config _ string=uvm _ test _ top. _ i, color, red Hierarchal Testbench Configuration Using uvm_config_db 4
5 The log message generated during simulation is: UVM _ 0: reporter [UVM _ CMDLINE _ PROC] Applying config ting from the command line: +uvm config _ int=uvm _ test _ top. _ i, a, 6 UVM _ 0: reporter [UVM _ CMDLINE _ PROC] Applying config ting from the command line: +uvm config _ string=uvm _ test_top._i, color, red Cross-Hierarchical Access The () and get() parameters cntxt, inst _ name and field _ name make it possible to use a number of different paths to the same object. cntxt uses actual object hierarchy whereas inst _ name and field _ name uses the hierarchy path with names given to the objects in create()/new() method. It is good practice to create the objects with the same name as the object name. When referencing down in hierarchy, it should be enough to use this in cntxt and then provide the path and/ or names in inst _ name. Field _ name should be used just for the name of the object. When referencing upwards in hierarchy, utilize the uvm _ root::get() function to get access to the hierarchy root, and then reference down from there using inst _ name parameter. Figure 5 below clarifies and provides examples how objects can be referenced in uvm _ config _ db. To one object To multiple objects To everyone Upwards from one objects Horizontaly from objects test a test a test a test a test a agent_2 agent_2 agent_2 agent_2 agent_2 Figure 5: Options for using cntxt and inst_name parameters in () and get() uvm _ config _ db does not actually limit how path field name is shared between cntxt, inst _ name and field _ name. UVM combines all three of these parameters into one key that is used to access the database. This feature makes it possible to reference the same object in multiple different ways using the 3 metacharacters *,+,?. The table below determines the significance of each metacharacter: Character Meaning * 0 or more characters + 1 or more characters? Exactly 1 character Hierarchal Testbench Configuration Using uvm_config_db 5
6 The illustration below shows using these metacharacters for the same object in uvm _ config _ db. uvm _config _db#(<type>)::( <cntx>, <inst _name>, <field _name>, <object>); uvm _config _db#(<type>)::( <cntx>, <inst _name>, <field _name>, <object>); this.name _agen+ this.name _agent _? this.* i _of_ i _of_ i _of_ Figure 6: Different path notations to the one and same object Where To Use Usage and Its Benefits Passing Configuration uvm _ config _ db is used often to configure agents of the testbench and to pass access to signal interfaces. Agent is a class encapsulating sequencer, driver and monitor. Agent usually takes care of generating and receiving data for an interface. The configuration variables or virtual interface are at agent from top-level and later the agent is responsible for passing the virtual interface or configuration to other sub-components rather than passing it from top-level as shown in the figure below. Agents are often reused either as VIP blocks or across projects. This means that the receiver (get) of the information dictates type and field _ name, and source of the information () must use proper parameters when ting data into uvm _ config _ db. This is also part of the beauty of uvm _ config _ db: agents can be created without knowing where the parameters or signal interfaces are coming from, from where in the testbench hierarchy the agent object exists, what name it has, or how many instances there are in parallel. test_a test_a sequncr sequncr monitor driver monitor driver Figure 7: Passing configuration to agent and sub-components Passing Virtual Interface Passing the virtual interface across the verification component is the most common requirement when creating the reusable verification ironment. The preferred approach of doing this in UVM is to push the virtual interface into the configuration database from top-level. This is because top-level module is not uvm _ component hence the context is null and the instance is the absolute hierarchal path of the component where the virtual interface is assigned. The absolute hierarchal instance of the component starts with uvm_test_top. Because the ironment is usually instantiated by test and agent, it can extract the virtual interface from the configuration database as shown in the example on the next page Hierarchal Testbench Configuration Using uvm_config_db 6
7 2 module tb _ top(); 3 svt _ axi _ if vif(); initial begin 7 uvm _ config _ db #(virtual svt _ axi _ if)::(null, uvm _ test _ top..m _ agent _ 0, vif, vif); 8 end 9 endmodule class axi _ agent extends uvm _ agent; 12 virtual svt _ axi _ if vif(); virtual function _ void build _ phase(uvm _ phase phase); 16 super.build _ phase(phase); if(!uvm _ config _ db#(virtual svt _ axi _ if)::get(this,, vif, vif)) 19 `uvm _ fatal( AXI _ AGENT:NOVIF, The virtual interface get is not successful ); 20 uvm _ config _ db#(virtual svt _ axi _ if)::(this, driver, vif,vif); 21 uvm _ config _ db#(virtual svt _ axi _ if)::(this, monitor, vif,vif); 22 endfunction 23 endclass Event Synchronization uvm _ config _ db is used to make the object available for others, it does not create new copies of the object. Figure 8 below shows how event-object created by Object A is also made available to Objects X, Y and Z through the uvm _ config _ db. When Object A chooses to use trigger() for the event object, others can detect it because they have access to exactly the same object. This demonstrates how the same object event is referenced from four different objects with three different instance names. Object X uvm _event my _event; uvm _config _db#(uvm _event)::get(this,, my _event, my _event); Object A uvm _event my _event; my _event = new( my _event ); uvm _ config _ db#(uvm _ event)::(this, agent*, my _ event, my _ event); & event Object Y uvm _event my _event _also; uvm _config _db#(uvm _event)::get(this,, my _event, my _event _also); ( Object Z uvm _event my _event _too; uvm _config _db#(uvm _event)::get(this,, my _event, my _event _too); Figure 8: uvm_config_db shares handles to existing object Some attention needs to be paid that () is called before get()for a specific item, otherwise get() will fail. Values passed through uvm _ config _ db before run _ phase() need to take into account that build _ phase()constructs objects from top to bottom. This is often the desired order, since tings and configurations are usually from higher levels to lower levels via agents. During the simulation, use of () and get() need to be synchronized/timed by the normal testbench operation or by using events to create a synchronization mechanism. Limitations uvm _ config _ db can be used anywhere in the hierarchy. The first parameter of () and get() functions, cntxt, however needs to be of type class uvm _ component (or extended from that). cntxt parameter is often given value utilizing class member this. So if () or get() functions are used outside uvm _ component extended object, cntxt parameter can be given value using uvm _ root::get(), or just value null. Hierarchal Testbench Configuration Using uvm_config_db 7
8 uvm_sequence uvm_sequencer uvm_driver uvm_scoreboard uvm_monitor uvm_agent uvm_ uvm_test uvm_sequence_base uvm_component uvm_sequence_item uvm_report_object uvm_transaction uvm_object uvm_void Figure 9: () and get() functions need cntxt parameter of type uvm_component or null One common usage of uvm _ config _ db outside uvm _ components, is delivering values from hdl _ top to the testbench, including access to interfaces instantiated on hdl _ top. Though hdl _ top is not extended from any UVM class, uvm _ config _ db can still be utilized and communication with the UVM part of the testbench is possible. If () or get() function is used with cntxt parameter not pointing to object of uvm _ component extended classes, there will be a compile error as shown below. 25 Error-[SV-IUOT] Illegal us of this 26 test.sv, 9 27 this can only be used in a class method Error-[ICTTFC] Incompatible complex type usage 30 test.svh, Incompatible complex type usage in task or function call. 32 The following expression is incompatible with the formal parameter of the 33 function. The type of the actual is class 34 my _pkg::bus _slave, while the type of the formal is class 35 uvm _pkg::uvm _component. Expression: this 36 Source info: uvm _pkg _uvm _config _db_ ::get(this, \000, 37 this.get _full _name(), my _agent) Figure 10: Example error messages when trying to use this for non-uvm_component in /get Problems, Errors and Debug Even though operation and use of () and get() functions with uvm _ config _ db are logical and quite simple, uvm _ config _ db related debugging is often needed. Some errors may stop the compile or simulation making them easy to find, as opposed to a coding error that simulates without error even though the get() function was receiving incorrect objects. Some common types of errors are: ``Compile time errors Parameter type does not match provided T value Trying to use this-pointer from class not extended from uvm _ component ``Simulation time errors get() does not find what was using () due to misspelling of inst _ name or field value null object access attributed to get() used before () Hierarchal Testbench Configuration Using uvm_config_db 8
9 Synopsys VCS Discovery Visualization Environment (DVE) has built-in support for UVM debug. Using the GUI, it is possible to get list of Set calls without Get and Get calls without Set. These lists help to find and detect errors in the testbench. Figure 11 below shows the DVE UVM debug dialog window. Figure 11: Synopys VCS DVE UVM debug dialog window The UVM command line option +UVM _ CONFIG _ DB _ TRACE makes all () and get() calls visible in the simulation log. However doing this makes the log file too verbose and difficult to interpret. For this reason tracing is typically turned on only when finding a specific uvm _ config _ db problem. Below is an example of log messages printed out when () and get() functions are executed. 39 UVM _ INFO /global/apps4/vcs _ /etc/uvm-1.1/base/uvm _ resource 0: 40 reporter [CFGDB/SET] 41 Configuration uvm _ test _ top..name _ agent _ 1.i _ of _ (type int) 42 by uvm _ test _ top..name _ agent _ 1 = (int) UVM _ INFO /global/apps4/vcs _ /etc/uvm-1.1/base/uvm _ resource _ 0; 45 reporter [CFGDB/GET] 46 Configuration uvm _ test _ top..name _ agent _ 1.i _ of _ (type int) 47 read by uvm _ test _ top..name _ agent _ 1 = (int) 1 Sometimes it may help just to print out the name of the object. UVM object has functions get _ name() and get _ full _ name(). By using these, it can be verified manually that names used in the source code and named objects at runtime match. Below is an example of how to print the object s name. 49 $d is play( t h is.g et _ n a m e =%0s, t h is _ g et _ f u ll _ n a m e = %0s, t h is.g et _ n a m e(), this.get _ full _ name()); Conclusion When using UVM you can t avoid uvm _ config _ db. So it s better to get a solid understanding about what the () and get() functions of the uvm _ config _ db do and how you can use them more efficiently in building your testbench. Below are some do s and don ts found to be useful when using UVM. Do s: ``For simplicity and to avoid confusion, use the field name as the variable name ``Investigate an upshot warning/error on an unsuccessful get() method call ``Set the configuration variable needed across the verification component in the agent s test ironment to enable the agent to later its sub-components Hierarchal Testbench Configuration Using uvm_config_db 9
10 Don ts: ``Avoid using the uvm _ config _ db mechanism excessively as it may cause performance issues ``Avoid using the automatic configuration or implicit get() method call Apart from the above recommendations, it is recommended to use a UVM-aware GUI-based debugging tool such as Synopsys VCS Discovery Visualization Environment (DVE). As part of Synopsys Professional Services we have used these concepts across multiple customer engagements to successfully deploy UVM. For more information on these services, see Appendix Below is a sample UVM ironment showcasing the examples presented earlier. () and get() functions utilize only integers (int) though classes and interfaces that would normally be used. 1 // Usage 2 // vcs R sverilog ntb _ opts uvm-1.1 debug _ all +vcs+vcdpluson -1 sim.log 3 // q example.sv +UVM _ TESTNAME=test _ a 4 import uv m _ pkg::*; 5 6 module dut; 7 int dut _ int = 10; 8 initial uvm _ config _ db#(int)::(uvm _ root::get(), 9 *, 10 from _ dut, 11 dut _ int 12 ); 13 endmodule module top; 16 initial run _ test(); 17 dut i _ dut(); 18 endmodule class agent extends uvm _ component; 21 int i1 _ agent, i2 _ agent, i3 _ agent; // to receive values from uvm _ config _ db 22 int i4; // to use automatic configuration 23 uvm _ event new _ values; // to signal new step in test (->agent) 24 `uvm _ component _ utils _ begin (agent) 25 `uvm _ field _ int(i4, UVM _ ALL _ ON) 26 `uvm _ component _ utils _ end 27 function new (string name, uvm _ component parent); 28 super.new(name, parent); 29 endfunction 30 function void build _ phase (uvm _ phase phase); 31 super.build _ phase(phase); 32 uvm _ config _ db#(uv m _ event)::get(this,, new _ values, new _ values); 33 if (new _ values == null) 34 `uvm _ fatal(get _ name(), 35 new _ values must be in uvm _ config _ db 36 ); 37 $display( Agent \ %0s\ got Automatic configuration: i4=%0d, 38 get _ name(), 39 i4 40 ); 41 endfunction 42 task run _ phase (uvm _ phase phase); 43 while (1) 44 begin 45 uvm _ config _ db#(int)::get(this, 46, 47 i _ of _, 48 i1 _ agent 49 ); Hierarchal Testbench Configuration Using uvm_config_db 10
11 50 uvm _ config _ db#(int)::get(uvm _ root::get(), 51 uvm _ test _ top..name _ agent _ 1, 52 i _ of _, 53 i2 _ agent 54 ); 55 $display( Agent \ %0s\ got: %0d (and stole %0d from agent1), 56 get _ name(), 57 i1 _ agent, 58 i2 _ agent 59 ); 60 uvm _ config _ db#(int)::get(this,, from _ dut, i3 _ agent); 61 $display( Agent \ %0s\ got %0d from DUT, 62 get _ name(), 63 i3 _ agent 64 ); 65 new _ values.wait _ trigger(); end 68 endtask 69 endclass class extends uvm _ ; 72 `uvm _ component _ utils() 73 agent agent _ 1, agent _ 2, agent _ 3; 74 int i1 _ =1, i2 _ =2, i3 _ =3, 75 i4 _ =4, i5 _ =5, i6 _ =6, 76 i7 _ =7, i8 _ =8; 77 uvm _ event new _ values; 78 function new(string name, uvm _ component parent); 79 super.new(name, parent); 80 endfunction 81 function void build _ phase (uvm _ phase phase); 82 agent _ 1 = agent::type _ id::create( name _ agent _ 1, this); 83 agent _ 2 = agent::type _ id::create( name _ agent _ 2, this); 84 agent _ 3 = agent::type _ id::create( name _ agent _ 3, this); 85 _ config _ int( name _ agent _ 1, i4, 1111); 86 _ config _ int( name _ agent _ 2, i4, 2222); 87 _ config _ int( name _ agent _ 3, i4, 3333); 88 new _ values = new( new _ values ); 89 //Share event through uvm _ config _ db with agents 90 uvm _ config _ db#(uvm _ event)::(this, 91 name _ agent _ *, 92 new _ values, 93 new _ values 94 ); 95 endfunction 96 task run _ phase (uvm _ phase phase); 97 phase.raise _ objections(this); 98 //uvm _ config: share data with one specific object 99 $display( --- 1, 2, 3 to every agent separately --- ); 100 uvm _ config _ db#(int)::(agent _ 1, 101, 102 i _ of _, 103 i1 _ 104 ); 105 uvm _ config _ db#(int)::(this, 106 name _ agent _ 2, 107 i _ of _, 108 i2 _ 109 ); 110 uvm _ config _ db#(int)::(uvm _ root::get(), 111 uvm _ test _ top..name _ agent _ 3, 112 i _ of _, 113 i3 _ 114 ); 115 // uvm _ config _ db: share data with multiple objects using regexp Hierarchal Testbench Configuration Using uvm_config_db 11
12 116 new _ values.trigger(); #1; 117 $display( to every agent, regexp name _ agent _? --- ); 118 uvm _ config _ db#(int)::(this, 119 name _ agent _?, 120 i _ of _, 121 i4 _ 122 ); 123 new _ values.trigger(); #1; 124 $display( to every agent, regexp name _ agent* --- ); 125 uvm _ config _ db#(int)::(this, 126 name _ agent _ *, 127 i _ of _, 128 i5 _ 129 ); 130 new _ values.trigger(); #1; 131 $display( to every agent, regexp *agent* --- ); 132 uvm _ config _ db#(int)::(uvm _ root::get(), 133 *agent*, 134 i _ of _, 135 i6 _ 136 ); 137 // uvm _ config _ db: share data with everyone 138 new _ values.trigger(); #1; 139 $display( to everyone, regexp *--- ); 140 uvm _ config _ db#(int)::(uvm _ root::get(), 141 *, 142 i _ of _, 143 i7 _ 144 ); 145 new _ values.trigger(); #1; 146 $display( to everyone, regexp *--- ); 147 uvm _ config _ db#(int)::(null, 148 *, 149 i _ of _, 150 i8 _ 151 ); 152 new _ values.trigger(); 153 phase.drop _ objection(this); 154 endtask 155 endclass class test _ a extends uvm _ test; 158 `uvm _ component _ utils (test _ a) 159 ; 160 function new (string name= test _ a, uvm _ component parent=null); 161 super.new (name, parent); 162 = new(, this); 163 endfunction 164 function void end _ of _ elaboration(); 165 print(); 166 endfunction 167 task run _ phase(uvm _ phase phase); 168 #1000; global _ stop _ request(); 169 endtask 170 endclass References 1 Accellera Systems Initiative Universal Verification Methodology (UVM) 1.1 User s Guide, May 18, Accellera Systems Initiative Universal Verification Methodology (UVM) 1.1 Class Reference Manual, June 2011 Synopsys, Inc. 700 East Middlefield Road Mountain View, CA Synopsys, Inc. All rights reserved. Synopsys is a trademark of Synopsys, Inc. in the United States and other countries. A list of Synopsys trademarks is available at All other names mentioned herein are trademarks or registered trademarks of their respective owners. 06/14.AP.CS3989.
Using a Generic Plug and Play Performance Monitor for SoC Verification
Using a Generic Plug and Play Performance Monitor for SoC Verification Dr. Ambar Sarkar Kaushal Modi Janak Patel Bhavin Patel Ajay Tiwari Accellera Systems Initiative 1 Agenda Introduction Challenges Why
Using a Generic Plug and Play Performance Monitor for SoC Verification
Using a Generic Plug and Play Performance Monitor for SoC Verification Ajay Tiwari, ASIC Engineer, einfochips, Ahmedabad, India ([email protected]) Bhavin Patel, ASIC Engineer, einfochips, Ahmedabad,
Getting off the ground when creating an RVM test-bench
Getting off the ground when creating an RVM test-bench Rich Musacchio, Ning Guo Paradigm Works [email protected],[email protected] ABSTRACT RVM compliant environments provide
How To Port A Program To Dynamic C (C) (C-Based) (Program) (For A Non Portable Program) (Un Portable) (Permanent) (Non Portable) C-Based (Programs) (Powerpoint)
TN203 Porting a Program to Dynamic C Introduction Dynamic C has a number of improvements and differences compared to many other C compiler systems. This application note gives instructions and suggestions
Documentum Developer Program
Program Enabling Logging in DFC Applications Using the com.documentum.fc.common.dflogger class April 2003 Program 1/5 The Documentum DFC class, DfLogger is available with DFC 5.1 or higher and can only
The structured application of advanced logging techniques for SystemVerilog testbench debug and analysis. By Bindesh Patel and Amanda Hsiao.
Logging makes sense for testbench debug The structured application of advanced logging techniques for SystemVerilog testbench debug and analysis. By Bindesh Patel and Amanda Hsiao. SystemVerilog provides
UVM Best Practices & Debug
UVM Best Practices & Debug Leo Fang Synopsys, Inc. March 2014 2014 Synopsys. All rights reserved. 1 Agenda UVM Ecosystem UVM Best Practices UVM Debug 2014 Synopsys. All rights reserved. 2 UVM Ecosystem
CS 451 Software Engineering Winter 2009
CS 451 Software Engineering Winter 2009 Yuanfang Cai Room 104, University Crossings 215.895.0298 [email protected] 1 Testing Process Testing Testing only reveals the presence of defects Does not identify
FioranoMQ 9. High Availability Guide
FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential
Use, Analysis, and Debug of SystemVerilog Assertions
Use, Analysis, and Debug of SystemVerilog Assertions Agenda Introduction Source Code Tracing Assertion Checking Analyzing and Debugging Waveform Active Annotation Property Result Table Standards: The Life
Data Migration from Magento 1 to Magento 2 Including ParadoxLabs Authorize.Net CIM Plugin Last Updated Jan 4, 2016
Data Migration from Magento 1 to Magento 2 Including ParadoxLabs Authorize.Net CIM Plugin Last Updated Jan 4, 2016 This guide was contributed by a community developer for your benefit. Background Magento
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.
EMC Documentum Content Services for SAP iviews for Related Content
EMC Documentum Content Services for SAP iviews for Related Content Version 6.0 Administration Guide P/N 300 005 446 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000
Using SystemVerilog Assertions for Creating Property-Based Checkers
Using SystemVerilog Assertions for Creating Property-Based Checkers Eduard Cerny Synopsys, Inc. Marlborough, USA [email protected] Dmitry Korchemny Intel Corp. Haifa, Israel [email protected]
Version Control Your Jenkins Jobs with Jenkins Job Builder
Version Control Your Jenkins Jobs with Jenkins Job Builder Abstract Wayne Warren [email protected] Puppet Labs uses Jenkins to automate building and testing software. While we do derive benefit from
Introduction to Functional Verification. Niels Burkhardt
Introduction to Functional Verification Overview Verification issues Verification technologies Verification approaches Universal Verification Methodology Conclusion Functional Verification issues Hardware
Xcode Project Management Guide. (Legacy)
Xcode Project Management Guide (Legacy) Contents Introduction 10 Organization of This Document 10 See Also 11 Part I: Project Organization 12 Overview of an Xcode Project 13 Components of an Xcode Project
Java (12 Weeks) Introduction to Java Programming Language
Java (12 Weeks) Topic Lecture No. Introduction to Java Programming Language 1 An Introduction to Java o Java as a Programming Platform, The Java "White Paper" Buzzwords, Java and the Internet, A Short
Lynx Design System Delivering Higher Productivity and Predictability in IC Design
Datasheet Delivering Higher Productivity and Predictability in IC Design User Benefits ``Visualization technology provides intuitive, easy-to-use fl ow creation, execution automation and project reporting
VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com [email protected]. Flexense Ltd.
VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com [email protected] 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product
Configuring Firewalls An XML-based Approach to Modelling and Implementing Firewall Configurations
Configuring Firewalls An XML-based Approach to Modelling and Implementing Firewall Configurations Simon R. Chudley and Ulrich Ultes-Nitsche Department of Electronics and Computer Science, University of
Testing Low Power Designs with Power-Aware Test Manage Manufacturing Test Power Issues with DFTMAX and TetraMAX
White Paper Testing Low Power Designs with Power-Aware Test Manage Manufacturing Test Power Issues with DFTMAX and TetraMAX April 2010 Cy Hay Product Manager, Synopsys Introduction The most important trend
HP ProLiant PRO Management Pack (v 2.0) for Microsoft System Center User Guide
HP ProLiant PRO Management Pack (v 2.0) for Microsoft System Center User Guide Abstract This guide provides information on using the HP ProLiant PRO Management Pack for Microsoft System Center version
System Verilog Testbench Tutorial Using Synopsys EDA Tools
System Verilog Testbench Tutorial Using Synopsys EDA Tools Developed By Abhishek Shetty Guided By Dr. Hamid Mahmoodi Nano-Electronics & Computing Research Center School of Engineering San Francisco State
Discovery Visual Environment User Guide
Discovery Visual Environment User Guide Version 2005.06 August 2005 About this Manual Contents Chapter 1 Overview Chapter 2 Getting Started Chapter 3 Using the Top Level Window Chapter 4 Using The Wave
QTP Open Source Test Automation Framework Introduction
Version 1.0 April 2009 D ISCLAIMER Verbatim copying and distribution of this entire article are permitted worldwide, without royalty, in any medium, provided this notice is preserved. Table of Contents
How To Monitor Performance On A Microsoft Powerbook (Powerbook) On A Network (Powerbus) On An Uniden (Powergen) With A Microsatellite) On The Microsonde (Powerstation) On Your Computer (Power
A Topology-Aware Performance Monitoring Tool for Shared Resource Management in Multicore Systems TADaaM Team - Nicolas Denoyelle - Brice Goglin - Emmanuel Jeannot August 24, 2015 1. Context/Motivations
A Practical Guide to Test Case Types in Java
Software Tests with Faktor-IPS Gunnar Tacke, Jan Ortmann (Dokumentversion 203) Overview In each software development project, software testing entails considerable expenses. Running regression tests manually
Automating Root-Cause Analysis to Reduce Time to Find Bugs by Up to 50%
Automating Root-Cause Analysis to Reduce Time to Find Bugs by Up to 50% By Kishore Karnane and Corey Goss, Cadence Design Systems If you re spending more than 50% of your verification effort in debug,
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
TestStand Certification Overview
TestStand Certification Overview The National Instruments TestStand Certification Program consists of the following two certification levels: - Certified TestStand Developer (CTD) - Certified TestStand
Eventia Log Parsing Editor 1.0 Administration Guide
Eventia Log Parsing Editor 1.0 Administration Guide Revised: November 28, 2007 In This Document Overview page 2 Installation and Supported Platforms page 4 Menus and Main Window page 5 Creating Parsing
CA Nimsoft Monitor. Probe Guide for URL Endpoint Response Monitoring. url_response v4.1 series
CA Nimsoft Monitor Probe Guide for URL Endpoint Response Monitoring url_response v4.1 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject
Using the TASKING Software Platform for AURIX
Using the TASKING Software Platform for AURIX MA160-869 (v1.0rb3) June 19, 2015 Copyright 2015 Altium BV. All rights reserved. You are permitted to print this document provided that (1) the use of such
Basic Unix/Linux 1. Software Testing Interview Prep
Basic Unix/Linux 1 Programming Fundamentals and Concepts 2 1. What is the difference between web application and client server application? Client server application is designed typically to work in a
TECHNOLOGY Computer Programming II Grade: 9-12 Standard 2: Technology and Society Interaction
Standard 2: Technology and Society Interaction Technology and Ethics Analyze legal technology issues and formulate solutions and strategies that foster responsible technology usage. 1. Practice responsible
Digitale Signalverarbeitung mit FPGA (DSF) Soft Core Prozessor NIOS II Stand Mai 2007. Jens Onno Krah
(DSF) Soft Core Prozessor NIOS II Stand Mai 2007 Jens Onno Krah Cologne University of Applied Sciences www.fh-koeln.de [email protected] NIOS II 1 1 What is Nios II? Altera s Second Generation
Software Development Kit
Open EMS Suite by Nokia Software Development Kit Functional Overview Version 1.3 Nokia Siemens Networks 1 (21) Software Development Kit The information in this document is subject to change without notice
CA Data Protection. Content Provider Development Guide. Release 15.0
CA Data Protection Content Provider Development Guide Release 15.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation
Jet Data Manager 2012 User Guide
Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform
Keeping Up with Chip the Proposed SystemVerilog 2012 Standard Makes Verifying Ever-increasing Design Complexity More Efficient
Keeping Up with Chip the Proposed SystemVerilog 2012 Standard Makes Verifying Ever-increasing Design Complexity More Efficient Stuart Sutherland SystemVerilog Trainer and Consultant Sutherland HDL, Inc.
Framework 8.1. External Authentication. Reference Manual
Framework 8.1 External Authentication Reference Manual The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys
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
TROY Secure Print Enterprise Lite Users Guide
TROY Secure Print Enterprise Lite Users Guide 50-06451-001 Rev A TROY Group Inc. Page 1 of 25 TABLE OF CONTENTS Preface... 3 Notice... 3 Document History... 4 Trademark Credits... 5 Section 1 Introduction...
DB2 for i. Analysis and Tuning. Mike Cain IBM DB2 for i Center of Excellence. [email protected]
DB2 for i Monitoring, Analysis and Tuning Mike Cain IBM DB2 for i Center of Excellence Rochester, MN USA [email protected] 8 Copyright IBM Corporation, 2008. All Rights Reserved. This publication may refer
FILESURF 7.5 SR3/WORKSITE INTEGRATION INSTALLATION MANUAL 1 PRELIMINARIES...3 STEP 1 - PLAN THE FIELD MAPPING...3 STEP 2 - WORKSITE CONFIGURATION...
FILESURF 7.5 SR3/WORKSITE INTEGRATION 1 PRELIMINARIES...3 Prerequisites... 3 The FILESURFAdmin User Domain Account Required... 3 STEP 1 - PLAN THE FIELD MAPPING...3 Plan Which WorkSite Fields Will Carry
DiskBoss. File & Disk Manager. Version 2.0. Dec 2011. Flexense Ltd. www.flexense.com [email protected]. File Integrity Monitor
DiskBoss File & Disk Manager File Integrity Monitor Version 2.0 Dec 2011 www.flexense.com [email protected] 1 Product Overview DiskBoss is an automated, rule-based file and disk manager allowing one to
Salesforce Mobile Push Notifications Implementation Guide
Salesforce.com: Summer 14 Salesforce Mobile Push Notifications Implementation Guide Last updated: May 6, 2014 Copyright 2000 2014 salesforce.com, inc. All rights reserved. Salesforce.com is a registered
2 SQL in iseries Navigator
2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features
R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement
I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,
Elixir Schedule Designer User Manual
Elixir Schedule Designer User Manual Release 7.3 Elixir Technology Pte Ltd Elixir Schedule Designer User Manual: Release 7.3 Elixir Technology Pte Ltd Published 2008 Copyright 2008 Elixir Technology Pte
Record-Level Access: Under the Hood
Record-Level Access: Under the Hood Salesforce, Summer 15 @salesforcedocs Last updated: May 20, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of
Design Compiler Graphical Create a Better Starting Point for Faster Physical Implementation
Datasheet Create a Better Starting Point for Faster Physical Implementation Overview Continuing the trend of delivering innovative synthesis technology, Design Compiler Graphical delivers superior quality
Redpaper Axel Buecker Kenny Chow Jenny Wong
Redpaper Axel Buecker Kenny Chow Jenny Wong A Guide to Authentication Services in IBM Security Access Manager for Enterprise Single Sign-On Introduction IBM Security Access Manager for Enterprise Single
Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related
Abstractions from Multimedia Hardware. Libraries. Abstraction Levels
Abstractions from Multimedia Hardware Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Chapter 4: Multimedia Systems Storage Aspects Chapter 5: Multimedia Usage and Applications
Talend for Data Integration guide
Talend for Data Integration guide Table of Contents Introduction...2 About the author...2 Download, install and run...2 The first project...3 Set up a new project...3 Create a new Job...4 Execute the job...7
Applications Development
Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic
metaengine DataConnect For SharePoint 2007 Configuration Guide
metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect for SharePoint 2007 Configuration Guide (2.4) Page 1 Contents Introduction... 5 Installation and deployment... 6 Installation...
Supported Upgrade Paths for FortiOS Firmware VERSION 5.0.12
Supported Upgrade Paths for FortiOS Firmware VERSION 5.0.12 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER
Cloud Services. Introduction...2 Overview...2. Security considerations... 2. Installation...3 Server Configuration...4
Contents Introduction...2 Overview...2 Security considerations... 2 Installation...3 Server Configuration...4 Management Client Connection...4 General Settings... 4 Enterprise Architect Client Connection
3 - Lift with Monitors
3 - Lift with Monitors TSEA81 - Computer Engineering and Real-time Systems This document is released - 2015-11-24 version 1.4 Author - Ola Dahl, Andreas Ehliar Assignment - 3 - Lift with Monitors Introduction
Getting Started with the Internet Communications Engine
Getting Started with the Internet Communications Engine David Vriezen April 7, 2014 Contents 1 Introduction 2 2 About Ice 2 2.1 Proxies................................. 2 3 Setting Up ICE 2 4 Slices 2
Model Simulation in Rational Software Architect: Business Process Simulation
Model Simulation in Rational Software Architect: Business Process Simulation Mattias Mohlin Senior Software Architect IBM The BPMN (Business Process Model and Notation) is the industry standard notation
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Settle-to-File Credit Card Driver for 3700 POS
Restaurant Enterprise Series Settle-to-File Credit Card Driver for 3700 POS Version 4.x August 15, 2008 Copyright 2004-2008 by MICROS Systems, Inc. Columbia, MD USA All Rights Reserved MD0003-076 ii Installation
Best Practices for Verification, Validation, and Test in Model- Based Design
2008-01-1469 Best Practices for Verification, Validation, and in Model- Based Design Copyright 2008 The MathWorks, Inc. Brett Murphy, Amory Wakefield, and Jon Friedman The MathWorks, Inc. ABSTRACT Model-Based
User Guide Release Management for Visual Studio 2013
User Guide Release Management for Visual Studio 2013 ABOUT THIS GUIDE The User Guide for the release management features is for administrators and users. The following related documents for release management
Application Notes for Configuring Dorado Software Redcell Enterprise Bundle using SNMP with Avaya Communication Manager - Issue 1.
Avaya Solution & Interoperability Test Lab Application Notes for Configuring Dorado Software Redcell Enterprise Bundle using SNMP with Avaya Communication Manager - Issue 1.0 Abstract These Application
Third AP Edition. Object-Oriented Programming and Data Structures. Maria Litvin. Gary Litvin. Phillips Academy, Andover, Massachusetts
Third AP Edition Object-Oriented Programming and Data Structures Maria Litvin Phillips Academy, Andover, Massachusetts Gary Litvin Skylight Software, Inc. Skylight Publishing Andover, Massachusetts Skylight
NetFlow Policy Routing
NetFlow Policy Routing Feature Summary NetFlow policy routing (NPR) integrates policy routing, which enables traffic engineering and traffic classification, with NetFlow services, which provide billing,
Smart Business Architecture for Midsize Networks Network Management Deployment Guide
Smart Business Architecture for Midsize Networks Network Management Deployment Guide Introduction: Smart Business Architecture for Mid-sized Networks, Network Management Deployment Guide With the Smart
Changes to credit card processing in Microsoft Dynamics AX 2012 R2
Microsoft Dynamics AX Changes to credit card processing in Microsoft Dynamics AX 2012 R2 Implementation Note This document explains what has changed in the implementation of credit card processing in Accounts
HP Quality Center. Upgrade Preparation Guide
HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth
A QUICK OVERVIEW OF THE OMNeT++ IDE
Introduction A QUICK OVERVIEW OF THE OMNeT++ IDE The OMNeT++ 4.x Integrated Development Environment is based on the Eclipse platform, and extends it with new editors, views, wizards, and additional functionality.
Parameter Fields and Prompts. chapter
Parameter Fields and Prompts chapter 23 Parameter Fields and Prompts Parameter and prompt overview Parameter and prompt overview Parameters are Crystal Reports fields that you can use in a Crystal Reports
System Security Fundamentals
System Security Fundamentals Alessandro Barenghi Dipartimento di Elettronica, Informazione e Bioingegneria Politecnico di Milano alessandro.barenghi - at - polimi.it April 28, 2015 Lesson contents Overview
Monitoring and Diagnostic Guidance for Windows Azure hosted Applications
Monitoring and Diagnostic Guidance for Windows Azure hosted Applications Published: June 2010 Overview: This monitoring and diagnostics guide provides information on the tools available for applications
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...
IRA 423/08. Designing the SRT control software: Notes to the UML schemes. Andrea Orlati 1 Simona Righini 2
Designing the SRT control software: Notes to the UML schemes Andrea Orlati 1 Simona Righini 2 1 - I.N.A.F. Istituto di Radioastronomia. 2 Dip. Astronomia - Università degli Studi di Bologna. Dicembre 2008
OpenESB Standalone Edition V3.0 Web admin console
OpenESB Standalone Edition V3.0 Web admin console Page 1 of 45 Document identifier: Pymma document: 770-003 Location: www.pymma.com Editor: Pymma Services: [email protected] Abstract: This document explains
Sentaurus Workbench Comprehensive Framework Environment
Data Sheet Comprehensive Framework Environment Overview is a complete graphical environment for creating, managing, executing, and analyzing TCAD simulations. Its intuitive graphical user interface allows
SQL Server An Overview
SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system
Helpdesk Support Tool Administrator s Guide
Helpdesk Support Tool Administrator s Guide VMware User Environment Manager V E R S I O N 8. 6. 0 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/
ECE 341 Coding Standard
Page1 ECE 341 Coding Standard Professor Richard Wall University of Idaho Moscow, ID 83843-1023 [email protected] August 27, 2013 1. Motivation for Coding Standards The purpose of implementing a coding standard
Best Practices. Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy. IBM Smart Analytics System
IBM Smart Analytics System Best Practices Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy Garrett Fitzsimons IBM Data Warehouse Best Practices Specialist Konrad Emanowicz
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...
Integrating CoroSoft Datacenter Automation Suite with F5 Networks BIG-IP
Integrating CoroSoft Datacenter Automation Suite with F5 Networks BIG-IP Introducing the CoroSoft BIG-IP Solution Configuring the CoroSoft BIG-IP Solution Optimizing the BIG-IP configuration Introducing
VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0
VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 UX Software - 2009 TABLE OF CONTENTS INTRODUCTION... ii What is this book about?... iii How to use this book... iii Time to start...
Search and Replace in SAS Data Sets thru GUI
Search and Replace in SAS Data Sets thru GUI Edmond Cheng, Bureau of Labor Statistics, Washington, DC ABSTRACT In managing data with SAS /BASE software, performing a search and replace is not a straight
This documentation is made available before final release and is subject to change without notice and comes with no warranty express or implied.
Hyperloop for ios Programming Guide This documentation is made available before final release and is subject to change without notice and comes with no warranty express or implied. Requirements You ll
Module 10. Coding and Testing. Version 2 CSE IIT, Kharagpur
Module 10 Coding and Testing Lesson 23 Code Review Specific Instructional Objectives At the end of this lesson the student would be able to: Identify the necessity of coding standards. Differentiate between
Pipeline Orchestration for Test Automation using Extended Buildbot Architecture
Pipeline Orchestration for Test Automation using Extended Buildbot Architecture Sushant G.Gaikwad Department of Computer Science and engineering, Walchand College of Engineering, Sangli, India. M.A.Shah
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Adaptive Resource Optimizer For Optimal High Performance Compute Resource Utilization
Technical Backgrounder Adaptive Resource Optimizer For Optimal High Performance Compute Resource Utilization July 2015 Introduction In a typical chip design environment, designers use thousands of CPU
Novas Software, Inc. Introduction. Goal. PART I: Original Technology Donation 1. Data Dump Reader
Novas Software, Inc Introduction SystemVerilog is both a design and verification language For this reason, VPI has been recently extended to handle coverage and assertion data, and there is a proposal
SoMA. Automated testing system of camera algorithms. Sofica Ltd
SoMA Automated testing system of camera algorithms Sofica Ltd February 2012 2 Table of Contents Automated Testing for Camera Algorithms 3 Camera Algorithms 3 Automated Test 4 Testing 6 API Testing 6 Functional
Dynamic Decision-Making Web Services Using SAS Stored Processes and SAS Business Rules Manager
Paper SAS1787-2015 Dynamic Decision-Making Web Services Using SAS Stored Processes and SAS Business Rules Manager Chris Upton and Lori Small, SAS Institute Inc. ABSTRACT With the latest release of SAS
