all Specman’s Callback Coverage API By feedproxy.google.com Published On :: Thu, 30 Apr 2020 14:30:00 GMT Our customers’ tests have become more complex, longer, and consume more resources than before. This increases the need to optimize the regression while not compromising on coverage. Some advanced customers of Specman use Machine Learning based solutions to optimize the regressions while some use simpler solutions. Based on a request of an advanced customer, we added a new Coverage API in Specman 19.09 called Coverage Callback. In 20.03, we have further enhanced this API by adding more options. Now there are two Coverage APIs that provide coverage information during the run (the old scan_cover API and this new Callback API). This blog presents these two APIs and compares between them while focusing on the newer one. Before we get into the specifics of each API, let’s discuss what is common between these APIs and why we need them. Typically, people observe the coverage model after the test ends, and get to know the overall contribution of the test to the coverage. With these two APIs, you can observe the coverage model during the test, and hence, get more insight into the test progress. Are you wondering about what you can do with this information? Let’s look at some examples. Recognize cases when the test continues to run long after it already reached its coverage goal. View the performance of the coverage curve. If a test is “stuck” at the same grade for a long time, this might indicate that the test is not very good and is just a waste of resource. These analyses can be performed in the test itself, and then a test can decide to either stop the run, or change something in it configuration, or – post run. You can also present them visually for some analysis, as shown in the blog: Analyze Your Coverage with Python. scan_cover API (or “Scanning the Coverage Model”) With this API you can get the current status for any cover group or item you are interested in at any point in time during the test (by calling scan_cover()). It is very simple to use; however it has performance penalty. For getting the coverage grade of any cover group during the test, you should1. Trigger the scan_cover at any time when you want the coverage model to be scanned.2. Implement the scan_cover related methods, such as start_item() and end_bucket(). In these methods, you can query the current grade of group/item/bucket.The blog mentioned earlier: Analyze Your Coverage with Python describes the details and provides an example. Callback API The Callback API enables you to get a callback for a desired cover group(s), whenever it is sampled. This API also provides various query methods for getting coverage related information such as what the current sampled value is. So, in essence, it is similar to scan_cover API, but as the phrase says: “same same but different”: Callback API has almost no performance penalty while scan_cover API does. Callback API contains a richer set of query methods that provide a lot of information about the current sampled value (vs just the grade with scan_cover). Using scan_cover API, you decide when you want to query the coverage information (you call scan_cover), while with the Callback API you query the coverage information when the coverage is sampled (from do_callback). So, scan_cover gives you more flexibility, but you do need to find the right timing for this call. There is no absolute advantage of either of these APIs, this only depends on what you want to do. Callback API details The Callback API is based on a predefined struct called: cover_sampling_callback. In order to use this API, you need to: Define a struct inheriting cover_sampling_callback (cover_cb_save_data below) Extend the predefined do_callback() method. This method is a hook being called whenever any of the cover groups that are registered to the cover_sampling_callback instance is being sampled. From do_callback() you can access coverage data by using queries such as: is_currently_per_type(), get_current_group_grade() and get_current_cover_group() (as in the example below) and many more such as: get_relevant_group_layers() and get_simple_cross_sampled_bucket_name(). Register the desired cover group(s) to this struct instance using the register() method. Take a look at the following code: // Define a coverage callback.// Its behavior – print to screen the current grade.struct cover_cb_save_data like cover_sampling_callback { do_callback() is only { // In this example, we care only about the per_type grade, and not per_instance if is_currently_per_type() { var cur_grade : real = get_current_group_grade(); sys.save_data (get_current_cover_group().get_name(), cur_grade); };//if };//do_callback()};// cover_cb_send_dataextend sys { !cb : cover_cb_save_data; // Instantiate the coverage callback, and register to it two of my coverage groups run() is also { cb = new with { var gr1:=rf_manager.get_struct_by_name("packet").get_cover_group("packet_cover"); .register(gr1); var gr2:=rf_manager.get_struct_by_name("sys").get_cover_group("mem_cover"); .register(gr2); };//new };//run() save_data(group_name : string, group_grade : real) is { //here you either print the values to the screen, update a graph you show or save to a db };// save_data};//sys In the blog Analyze Your Coverage with Python mentioned above, we show an example of how you can use the scan_cover API to extract coverage information during the run, and then use the Specman-Python API to display the coverage interactively during the run (using plotting Python library - matplotlib). If you find this usage interesting and you want to use the same example, by the Callback API instead of the scan_cover API, you can download the full example from GIT from here: https://github.com/efratcdn/cover_callback. Specman Team Full Article Specman/e Specman coverage engine coverage Specman e specman elite Coverage Driven Verification
all BoardSurfers: Allegro In-Design IR Drop Analysis: Essential for Optimal Power Delivery Design By feedproxy.google.com Published On :: Wed, 01 Apr 2020 15:12:00 GMT All PCB designers know the importance of proper power delivery for successful board design. Integrated circuits need the power to turn on, and ICs with marginal power delivery will not operate reliably. Since power planes can...(read more) Full Article PCB PI PCB design power
all BoardSurfers: Training Insights: Loading SKILL Programs Automatically By feedproxy.google.com Published On :: Tue, 07 Apr 2020 14:51:00 GMT Imagine you are on a vacation with your family, and suddenly, your phone starts buzzing. You pick it up and what are you looking at is a bunch of pending, unanswered e-mails. You start recollecting the checklist you had made before taking off only to realize that you haven’t put on the automatic replies! (read more) Full Article Cadence SKILL Allegro PCB Editor Allegro Skill
all BoardSurfers: Allegro In-Design Impedance Analysis: Screen your Routed Design Quickly By feedproxy.google.com Published On :: Tue, 28 Apr 2020 13:12:00 GMT Have you ever manufactured a printed circuit board (PCB) without analyzing all the routed signal traces? Most designers will say “yes, all the time.” Trace widths and spacing are set by constraints, and many designers simply don’t h...(read more) Full Article PCB design Sigrity Allegro
all BoardSurfers: Training Insights: Placing Parts Manually Using Design for Assembly (DFA) Rules By feedproxy.google.com Published On :: Fri, 08 May 2020 14:41:00 GMT So, what if you can figure out all that can go wrong when your product is being assembled early on? Not guess but know and correct at an early stage – not wait for the fabricator or manufacturer to send you a long report of what needs to change. That’s why Design for Assembly (DFA) rules(read more) Full Article Allegro PCB Editor
all How to install PLL Macro Model Wizard? By feedproxy.google.com Published On :: Tue, 10 Mar 2020 04:13:35 GMT Hello, I am using virtuoso version IC 6.1.7-64b.500.1, and I am trying to follow the Spectre RF Workshop-Noise-Aware PLL Design Flow(MMSIM 7.1.1) pdf. I could find the workshop library "pllMMLib", but I cannot find PLL Macro Model Wizard, and I attached my screen. Could you please help me install the module "PLL Macro Model Wizard"? Thanks a lot! Full Article
all How to reload a SKILL-script in Allegro By feedproxy.google.com Published On :: Thu, 02 Apr 2020 06:26:49 GMT I am working on some SKILL scripts which are loaded by allegro.ilinit at startup. If I edit my .il-files how do I get them updated in Allegro? Right now I restart the program but there must be a simpler way. A newbie question, I know... Full Article
all How to call a skil file in the other skill file to create one new function. By feedproxy.google.com Published On :: Mon, 20 Apr 2020 11:05:56 GMT Hi guys, eDave, I need to call (replay) a skill to combine some skills to ONE UI for more convenience and using as more easier. Please help me to find the command to execute this.(code for example as more good) HT, Full Article
all Inconsistent behaviour of warn() between Virtuoso and Allegro By feedproxy.google.com Published On :: Thu, 23 Apr 2020 09:27:22 GMT For a project, we depend on capturing warnings. This works fine in Virtuoso but behaves differently in Allegro. In our observations Virtuoso: >>> warn("Hello") *WARNING* Hello Allegro: >>> warn("Hello") *WARNING* Hello But when we capture the warning: Virtuoso: >>> warn("Hello") getWarn() "Hello" Allegro: >>> warn("Hello") getWarn() "*WARNING* Hello" This is a Problem for because we put an empty String in the warn and depend on the fact that no Warning results in an empty String but on Allegro the output always begins with *WARNING* Is there a way to make the behavior consistent in both versions? Full Article
all How to run a regressive test and merge the ncsim.trn file of all test into a single file to view the waveform in simvision ? By feedproxy.google.com Published On :: Mon, 13 Jan 2020 12:04:01 GMT Hi all, I want to know how to run a regressive test in cadence and merge all ncsim .trn file of each test case into a single file to view all waveform in simvision. I am using Makefile to invoke the test case. eg:- test0: irun -uvm -sv -access +rwc $(RTL) $(INTER) $(PKG) $(TOP) $(probe) +UVM_VERBOSITY=UVM_MEDIUM +UVM_TESTNAME=test0 test1: irun -uvm -sv -access +rwc $(RTL) $(INTER) $(PKG) $(TOP) $(probe) +UVM_VERBOSITY=UVM_MEDIUM +UVM_TESTNAME=test1 I just to call test0 followed by test1 or parallel both test and view the waveform for both tests case. I new to this tool and help me with it Full Article
all IC Packagers: Shape Connectivity in the Allegro Data Model By feedproxy.google.com Published On :: Tue, 28 Apr 2020 13:14:00 GMT Those who work in the IC Packaging design space have some unique challenges. We bridge between the IC design world (90/45-degree traces with rectangular and octagonal pins) and the PCB domain (any-angle routing, filled planes, and a multitude of pad ...(read more) Full Article Allegro Package Designer Allegro PCB Editor
all allegro schematic Hierarchy By feedproxy.google.com Published On :: Mon, 27 Apr 2020 07:19:15 GMT Hello, I need to ask a question regarding hierarchy in allegro schematic. I have created one but now i need to make changes to one section so that its not reflected into the other? Full Article
all Placement by Schematic Page Problem (Not Displaying All Page) By feedproxy.google.com Published On :: Wed, 29 Apr 2020 02:30:24 GMT I am using PCB Editor v17.2-2016. I tried to do placement by schematic page but not all pages are displayed. Earlier, I successfully do the placement by schematic pages and it was showing all the pages. But then I decided to delete all placed components and to do placement again. When I try to do placement by schematic page again, I noticed that only the pages that I have successfully do all the placement previously are missing. Full Article
all ORCAD 17.2 Win 10 Install Error By feedproxy.google.com Published On :: Thu, 30 Apr 2020 23:08:37 GMT I'm trying to re-install ORCAD 17.2 in a PC from a DVD which I have upgraded from Win 7 to Win 10 and now has a new 500GB SSD. While installing I got a Windows Application Error 0xc000007b. When I try to run ORCAD I get the same Error. Looking for ways to fix this problem. Full Article
all Allegro PDF By feedproxy.google.com Published On :: Tue, 05 May 2020 19:39:53 GMT What are folks doing to create PDFs that include artwork (shapes and routes) with Allegro? Everything I tried results in a terrible quality pdf. "Export PDF" resulted in awesome pdfs, but since that went away I've been struggling. I do a lot of work with die attachment and I need a lot of detail. We are currently stuck with Nuance for a pdf tool. I do not have admin rights, so I don't have the luxury of downloading and trying out different tools. Is Cadence going to add the PDF export option back any time soon? Thanks Full Article
all Allegro design entry DHL, pin swaps , export without exporting constraints, back annotate. By feedproxy.google.com Published On :: Wed, 06 May 2020 14:49:01 GMT Hi, I have a new customer that uses Allegro Design entry HDL for the schematic and have a few questions. 1. How do you get pin/gate swaps into the symbols in the schematic ? 2. How do you transfer them to the pcb editor ? 3. How do you back annotate the swaps from the pcb editor to the schematic ? 4. How do you stop the export/Import physical from updating the constraints in the pcb file ? Full Article
all Creating transition coverage bins using a queue or dynamically By feedproxy.google.com Published On :: Sun, 21 Apr 2019 01:31:28 GMT I want to write a transition coverage on an enumeration. One of the parts of that transition is a queue of the enum. I construct this queue in my constructor. Considering the example below, how would one go about it. In my coverage bin I can create a range like this A => [queue1Enum[0]:queue1Enum[$]] => [queue2Enum[0]:queue2Enum[$]]. But I only get first and last element then. typedef enum { red, d_green, d_blue, e_yellow, e_white, e_black } Colors; Colors dColors[$]; Colors eColors[$]; Lcolors = Colors.first(); do begin if (Lcolors[0].name=='d') begin dColors.push_back(Lcolors); end if (Lcolors[0].name=='e') begin eColors.push_back(Lcolors); end end while(Lcolors != Lcolors.first()) covergroup cgTest with function sample(Colors c); cpTran : coverpoint c{ bins t[] = (red => dColors =>eColors); } endgroup bins t[] should come out like this(red=>d_blue,d_green=>e_yellow,e_white) Full Article
all Automatically Reusing an SoC Testbench in AMS IP Verification By feedproxy.google.com Published On :: Thu, 04 Jan 2018 18:10:00 GMT The complexity and size of mixed-signal designs in wireless, power management, automotive, and other fast growing applications requires continued advancements in a mixed-signal verification methodology. An SoC, in these fast growing applications, incorporates a large number of analog and mixed-signal (AMS) blocks/IPs, some acquired from IP providers, some designed, often concurrently. AMS IP must be verified independently, but this is not sufficient to ensure an SoC will function properly and all scenarios of interaction among many different AMS IP blocks at full chip / SoC level must be verified thoroughly. To reduce an overall verification cycle, AMS IP and SoC verification teams must work in parallel from early stages of the design. Easier said than done! We will outline a methodology than can help. AMS designers verify their IP meets required specifications by running a testbench they develop for standalone / out of-context verification. Typically, an AMS IP as analog-centric, hierarchal design in schematic, composed of blocks represented by transistor, HDL and behavioral description verified in Virtuoso® Analog Design Environment (ADE) using Spectre AMS Designer simulation. An SoC verification team typically uses UVM SystemVerilog testbech at full chip level where the AMS IP is represented with a simple digital or real number model running Xcelium /DMS simulation from the command line. Ideally, AMS designers should also verify AMS IP function properly in the context of full-chip integration, but reproducing an often complex UVM SystemVerilog testbench and bringing over top-level design description to an analog-centric environment is not a simple task. Last year, Cadence partnered with Infineon on a project with a goal to automate the reuse of a top-level testbench in AMS verification. The automation enabled AMS verification engineers to automatically configure setup for verification runs by assembling all necessary options and files from the AMS IP Virtuoso GUI and digital SoC top-level command line configurations. The benefits of this method were: AMS verification engineers did not need to re-create complex stimuli representing interaction of their IP at the top level Top-level verification stays external to the AMS IP verification environment and continues to be managed by the SoC verification team, but can be reused by the AMS IP team without manual overhead AMS IP is verified in-context and any inconsistencies are detected earlier in the verification process Improved productivity and overall verification time For more details, please see Infineon’s CDNLlive presentation. Full Article AMS mixed signal design mixed-signal methodology mixed signal solution analog Mixed-Signal analog/mixed-signal Virtuoso environment mixed-signal verification
all Virtuosity: Can You Build Lego Masterpieces with All Blocks of One Size? By community.cadence.com Published On :: Thu, 30 Apr 2020 14:41:00 GMT The way you need blocks of different sizes and styles to build great Lego masterpieces, a complex WSP-based design requires stitching together routing regions with multiple patterns that follow different WSSPDef periods. Let's see how you can achieve this. (read more) Full Article ICADVM18.1 cadence WSP Advanced Node Local regions Layout Suite width spacing patterns Layout Virtuoso Virtuosity usability Custom IC ux WSSPDef
all News18 Urdu: Latest News Allahabad By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Allahabad on politics, sports, entertainment, cricket, crime and more. Full Article
all Photogallery News in Bengali by News18 Bengali By bengali.news18.com Published On :: Full Article
all Lockdown Challenge: ‘ঘরে থাকুন সুস্থ থাকুন...’ দেখে নিন ঘরবন্দির হাল-হকিকত By bengali.news18.com Published On :: Full Article
all AAPNU GUJARAT: Only one click on all news from Gujarat By gujarati.news18.com Published On :: Saturday, March 02, 2019 03:30 PM AAPNU GUJARAT : ગુજરાત ભરના તમામ સમાચારો વિગતે માત્ર એક Click પર Full Article
all News18 Urdu: Latest News Tiruchiorappalli By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Tiruchiorappalli on politics, sports, entertainment, cricket, crime and more. Full Article
all News18 Urdu: Latest News Mallapuram By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Mallapuram on politics, sports, entertainment, cricket, crime and more. Full Article
all News18 Urdu: Latest News Tiruvallur By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Tiruvallur on politics, sports, entertainment, cricket, crime and more. Full Article
all News18 Urdu: Latest News Diba Valley By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Diba Valley on politics, sports, entertainment, cricket, crime and more. Full Article
all News18 Urdu: Latest News Dibang Valley By urdu.news18.com Published On :: visit News18 Urdu for latest news, breaking news, news headlines and updates from Dibang Valley on politics, sports, entertainment, cricket, crime and more. Full Article
all Google Calls Out Apple's Intelligent Tracking Protection By packetstormsecurity.com Published On :: Thu, 12 Dec 2019 14:10:15 GMT Full Article headline privacy flaw google apple
all Controlling The Kernel - Its All About DRM By packetstormsecurity.com Published On :: Fri, 20 Oct 2006 06:07:43 GMT Full Article kernel
all Unpatched Kernel-Level Vuln Affects All Windows Versions By packetstormsecurity.com Published On :: Fri, 06 Aug 2010 04:16:38 GMT Full Article microsoft kernel patch
all Google Earth Accidentally Reveals Secret Military Sites By packetstormsecurity.com Published On :: Mon, 18 Feb 2019 15:39:49 GMT Full Article headline government data loss cyberwar google spyware taiwan military
all Facebook's Libra Falls Into Big Gap In EU Rules By packetstormsecurity.com Published On :: Thu, 05 Sep 2019 13:39:29 GMT Full Article headline government bank cybercrime fraud facebook social cryptography
all Facebook Alleges Company Infiltrated Thousands For Ad Fraud By packetstormsecurity.com Published On :: Fri, 06 Dec 2019 16:13:45 GMT Full Article headline cybercrime fraud facebook social
all Attack On Apache Server Exposes Firewalls, Routers, Etc By packetstormsecurity.com Published On :: Thu, 06 Oct 2011 02:06:20 GMT Full Article headline flaw apache
all Cisco Finally Patches 4-Year-Old Struts Vuln By packetstormsecurity.com Published On :: Mon, 14 Jul 2014 14:52:04 GMT Full Article headline flaw patch cisco apache
all Apache Struts Vulnerability Would Allow System Takeover By packetstormsecurity.com Published On :: Tue, 06 Nov 2018 23:26:37 GMT Full Article headline flaw apache
all RSA Roundup: Oracle's Database Firewall, Juniper, Fortinet By packetstormsecurity.com Published On :: Mon, 14 Feb 2011 22:08:06 GMT Full Article headline oracle juniper conference
all "Unauthorized Code" In Juniper Firewalls Decrypts Encrypted VPN Traffic By packetstormsecurity.com Published On :: Fri, 18 Dec 2015 01:55:21 GMT Full Article headline privacy flaw juniper backdoor cryptography
all Juniper Bleeding Data And Money: Slaps Band-Aids All Over JunOS By packetstormsecurity.com Published On :: Thu, 14 Apr 2016 12:58:46 GMT Full Article headline flaw patch juniper
all BlackBerry Goes All Patch Tuesday With Multiple Vuln Fixes By packetstormsecurity.com Published On :: Thu, 12 Sep 2013 14:59:20 GMT Full Article headline phone flaw blackberry
all Rogue WordPress Plugin Allowed Spam Injection By packetstormsecurity.com Published On :: Sun, 17 Sep 2017 16:44:01 GMT Full Article headline spam flaw wordpress
all WordPress Accounted For 90 Percent Of All Hacked CMS Sites In 2018 By packetstormsecurity.com Published On :: Tue, 05 Mar 2019 14:36:53 GMT Full Article headline hacker privacy data loss flaw wordpress
all Dassault Aviation Advances its Next Generation Enterprise Platform: 3DEXPERIENCE for All Programs By www.3ds.com Published On :: Tue, 23 Jul 2019 16:16:13 +0200 •Dassault Aviation will rely on six Dassault Systèmes industry solution experiences to integrate business processes, improve performance and reduce costs •Deployment marks next step in Dassault Aviation’s digital transformation plan through a platform approach, launched in 2018 •Dassault Systèmes’ 3DEXPERIENCE platform will power artificial intelligence-based application for intelligent enterprise services Full Article 3DEXPERIENCE Aerospace & Defense Customers
all Data Watchdog Calls For Single EU Coronavirus App By packetstormsecurity.com Published On :: Mon, 06 Apr 2020 18:18:02 GMT Full Article headline government privacy virus
all Apple Joins FIDO Alliance, Commits To Getting Rid Of Passwords By packetstormsecurity.com Published On :: Wed, 12 Feb 2020 18:13:41 GMT Full Article headline password apple
all Security Hack Allows VoIP Aboard Airlines By packetstormsecurity.com Published On :: Mon, 25 Aug 2008 14:29:24 GMT Full Article voip
all Skype Flaw Allows For Collection Of User IP Addresses By packetstormsecurity.com Published On :: Tue, 01 May 2012 21:23:32 GMT Full Article headline privacy flaw voip skype
all Salt Bugs Allow Full RCE As Root On Cloud Servers By packetstormsecurity.com Published On :: Fri, 01 May 2020 13:36:48 GMT Full Article headline flaw
all Australia's War On Encryption Potentially 'Reckless' By packetstormsecurity.com Published On :: Mon, 06 Nov 2017 14:22:57 GMT Full Article headline government privacy australia cryptography