<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for VerificationOnWeb (VoW)</title>
	<atom:link href="http://www.cvcblr.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cvcblr.com/blog</link>
	<description>Community contributed, quality DV blog</description>
	<lastBuildDate>Thu, 19 Aug 2010 01:50:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Our Trainings Calendar by admin</title>
		<link>http://www.cvcblr.com/blog/?page_id=20&#038;cpage=1#comment-2624</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 19 Aug 2010 01:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?page_id=20#comment-2624</guid>
		<description>Yes, contact us via info@cvcblr.com and look at our BUDS program at &lt;a href=&quot;www.cvcblr.com&quot; rel=&quot;nofollow&quot;&gt;www.cvcblr.com &lt;/a&gt; For current students we provide this for FREE of cost as part of our eco-system assistance.

Good Luck
TeamCVC</description>
		<content:encoded><![CDATA[<p>Yes, contact us via <a href="mailto:info@cvcblr.com">info@cvcblr.com</a> and look at our BUDS program at <a href="www.cvcblr.com" rel="nofollow"></a><a href="http://www.cvcblr.com" rel="nofollow">http://www.cvcblr.com</a>  For current students we provide this for FREE of cost as part of our eco-system assistance.</p>
<p>Good Luck<br />
TeamCVC</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our Trainings Calendar by prasanthi</title>
		<link>http://www.cvcblr.com/blog/?page_id=20&#038;cpage=1#comment-2620</link>
		<dc:creator>prasanthi</dc:creator>
		<pubDate>Wed, 18 Aug 2010 18:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?page_id=20#comment-2620</guid>
		<description>sir, some how i came to know about internship oppt for vlsi students in ur esteemed organisation i am pursuing mtech vlsi system design familiar with vhdl verilog and questa mentor graphics tools to some extent is there any chance to undergo internshipn in ur org pl respond sir..
thanking u in advance........</description>
		<content:encoded><![CDATA[<p>sir, some how i came to know about internship oppt for vlsi students in ur esteemed organisation i am pursuing mtech vlsi system design familiar with vhdl verilog and questa mentor graphics tools to some extent is there any chance to undergo internshipn in ur org pl respond sir..<br />
thanking u in advance&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our Trainings Calendar by pushkanjalika gautam</title>
		<link>http://www.cvcblr.com/blog/?page_id=20&#038;cpage=1#comment-2540</link>
		<dc:creator>pushkanjalika gautam</dc:creator>
		<pubDate>Fri, 13 Aug 2010 14:31:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?page_id=20#comment-2540</guid>
		<description>Hello sir, 
this is pushkanjalika. I m pursuing MCA with correspondance. iI need job in ur company...</description>
		<content:encoded><![CDATA[<p>Hello sir,<br />
this is pushkanjalika. I m pursuing MCA with correspondance. iI need job in ur company&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with SystemVerilog constraint solver failures &#8211; the Questa way by Claud Xiao</title>
		<link>http://www.cvcblr.com/blog/?p=182&#038;cpage=1#comment-2109</link>
		<dc:creator>Claud Xiao</dc:creator>
		<pubDate>Wed, 07 Jul 2010 05:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=182#comment-2109</guid>
		<description>Thanks Srini, regret for knowing about this too late.... I really took so long time on fighting with such issues:)</description>
		<content:encoded><![CDATA[<p>Thanks Srini, regret for knowing about this too late&#8230;. I really took so long time on fighting with such issues:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemVerilog OVM&#8217;s apply_config_settings &#8211; why &amp; were? by Arayik</title>
		<link>http://www.cvcblr.com/blog/?p=185&#038;cpage=1#comment-2105</link>
		<dc:creator>Arayik</dc:creator>
		<pubDate>Tue, 06 Jul 2010 07:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=185#comment-2105</guid>
		<description>apply_config_settings searches for configuration items and updates members.

virtual function void apply_config_settings(bit verbose = 0)
Automates the calling of get_config() during the build phase for all registered (using the automation macros) fields. This is really hidden magic, and I am not a big fan, but it does make things &quot;easy&quot; :). 
If you do not want apply_config_settings to be called for a component, then the build() method
should be overloaded and you should not call super.build(). If this case, you must also set the
m_build_done bit. Likewise, apply_config_settings can be overloaded to customize automated
configuration.
When the verbose bit is set, all overrides are printed as they are applied. If the component’s
print_config_matches property is set, then apply_config_settings is automatically called with verbose = 1.

Here is an example of apply_config_settings.

my_test extends ovm_test;
 
  virtual function void build();
      super.build();
  endfunction : build

  virtual function void end_of_elaboration();
      root = ovm_root::get();
      root.set_config_int(Tb0.env0.virtualSequencer.get_full_name(),
          &quot;count&quot;, 1);
      root.set_config_string(Tb0.env0.virtualSequencer.get_full_name(),
          &quot;default_sequence&quot;, &quot;RtrAllPathsVirtualSequence&quot;);
      Tb0.env0.virtualSequencer.apply_config_settings();

  endfunction : end_of_elaboration
       
endclass : my_test

In my_test test case we configure virtual sequencer&#039;s default sequence by RtrAllPathsVirtualSequence virtual sequence at end_of_elaboration phase. Then we call apply_config_settings to apply new configurations.</description>
		<content:encoded><![CDATA[<p>apply_config_settings searches for configuration items and updates members.</p>
<p>virtual function void apply_config_settings(bit verbose = 0)<br />
Automates the calling of get_config() during the build phase for all registered (using the automation macros) fields. This is really hidden magic, and I am not a big fan, but it does make things &#8220;easy&#8221; <img src='http://www.cvcblr.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
If you do not want apply_config_settings to be called for a component, then the build() method<br />
should be overloaded and you should not call super.build(). If this case, you must also set the<br />
m_build_done bit. Likewise, apply_config_settings can be overloaded to customize automated<br />
configuration.<br />
When the verbose bit is set, all overrides are printed as they are applied. If the component’s<br />
print_config_matches property is set, then apply_config_settings is automatically called with verbose = 1.</p>
<p>Here is an example of apply_config_settings.</p>
<p>my_test extends ovm_test;</p>
<p>  virtual function void build();<br />
      super.build();<br />
  endfunction : build</p>
<p>  virtual function void end_of_elaboration();<br />
      root = ovm_root::get();<br />
      root.set_config_int(Tb0.env0.virtualSequencer.get_full_name(),<br />
          &#8220;count&#8221;, 1);<br />
      root.set_config_string(Tb0.env0.virtualSequencer.get_full_name(),<br />
          &#8220;default_sequence&#8221;, &#8220;RtrAllPathsVirtualSequence&#8221;);<br />
      Tb0.env0.virtualSequencer.apply_config_settings();</p>
<p>  endfunction : end_of_elaboration</p>
<p>endclass : my_test</p>
<p>In my_test test case we configure virtual sequencer&#8217;s default sequence by RtrAllPathsVirtualSequence virtual sequence at end_of_elaboration phase. Then we call apply_config_settings to apply new configurations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with SystemVerilog constraint solver failures &#8211; the Questa way by Dave Rich</title>
		<link>http://www.cvcblr.com/blog/?p=182&#038;cpage=1#comment-2039</link>
		<dc:creator>Dave Rich</dc:creator>
		<pubDate>Tue, 29 Jun 2010 19:19:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=182#comment-2039</guid>
		<description>Hi Srini,

Thanks for letting users know about the Questa feature. 

The reason, in case you didn&#039;t know already, that Questa does not print the debug information automatically is that it is very expensive to keep all the information around to produce the testcase, and slows the solver down down during normal operation. 

Also &#039;-solveverbose 1&#124;2&#039; provides information about constraints that do not fail.

Dave Rich</description>
		<content:encoded><![CDATA[<p>Hi Srini,</p>
<p>Thanks for letting users know about the Questa feature. </p>
<p>The reason, in case you didn&#8217;t know already, that Questa does not print the debug information automatically is that it is very expensive to keep all the information around to produce the testcase, and slows the solver down down during normal operation. </p>
<p>Also &#8216;-solveverbose 1|2&#8242; provides information about constraints that do not fail.</p>
<p>Dave Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UVM gets better with a complete Reference Flow by Tom Anderson</title>
		<link>http://www.cvcblr.com/blog/?p=174&#038;cpage=1#comment-1850</link>
		<dc:creator>Tom Anderson</dc:creator>
		<pubDate>Sat, 12 Jun 2010 01:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=174#comment-1850</guid>
		<description>Thanks for the nice comments on the UVM Reference Flow! This represents many engineer-years of development effort at Cadence, but we felt that we should contribute it to the industry to foster the rapid adoption and deployment of the UVM. Enjoy, and please provide feedback on the UVM Form at www.uvmworld.org.</description>
		<content:encoded><![CDATA[<p>Thanks for the nice comments on the UVM Reference Flow! This represents many engineer-years of development effort at Cadence, but we felt that we should contribute it to the industry to foster the rapid adoption and deployment of the UVM. Enjoy, and please provide feedback on the UVM Form at <a href="http://www.uvmworld.org" rel="nofollow">http://www.uvmworld.org</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pre-DAC round-up of Verification technologies by Kishore Karnane</title>
		<link>http://www.cvcblr.com/blog/?p=170&#038;cpage=1#comment-1721</link>
		<dc:creator>Kishore Karnane</dc:creator>
		<pubDate>Mon, 07 Jun 2010 15:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=170#comment-1721</guid>
		<description>Srini,

Most of your verification technologies discussed are mainly digital centric. As you are well aware, at 65nm and below, all Chips, SoCs and Systems are mixed signal. So, it would be great to have some mixed signal verification technologies discussed. In other words, how to integrate the analog and digital domains to provide a mixed signal verification solution for Silicon Realization, a key component of the overall Cadence EDA360 initiative.

Silicon Realization represents everything it takes to get a design into silicon. The result could be an analog or digital IP block for an SoC, an IP subsystem, or a complete IC without embedded software. Silicon Realization increasingly involves the creation and integration of large and complex digital, analog, and mixed-signal IP blocks. It goes well beyond conventional “mixed-signal” designs that integrate a few small analog blocks into a digital SoC.

Just a few thoughts for your next blog....

Kishore</description>
		<content:encoded><![CDATA[<p>Srini,</p>
<p>Most of your verification technologies discussed are mainly digital centric. As you are well aware, at 65nm and below, all Chips, SoCs and Systems are mixed signal. So, it would be great to have some mixed signal verification technologies discussed. In other words, how to integrate the analog and digital domains to provide a mixed signal verification solution for Silicon Realization, a key component of the overall Cadence EDA360 initiative.</p>
<p>Silicon Realization represents everything it takes to get a design into silicon. The result could be an analog or digital IP block for an SoC, an IP subsystem, or a complete IC without embedded software. Silicon Realization increasingly involves the creation and integration of large and complex digital, analog, and mixed-signal IP blocks. It goes well beyond conventional “mixed-signal” designs that integrate a few small analog blocks into a digital SoC.</p>
<p>Just a few thoughts for your next blog&#8230;.</p>
<p>Kishore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pre-DAC round-up of Verification technologies by Kishore Karnane</title>
		<link>http://www.cvcblr.com/blog/?p=170&#038;cpage=1#comment-1720</link>
		<dc:creator>Kishore Karnane</dc:creator>
		<pubDate>Mon, 07 Jun 2010 15:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=170#comment-1720</guid>
		<description>Srini,

Most of your verification technologies discussed are mainly digital centric. As you are well aware, at 65nm and below, all Chips, SoCs and Systems are mixed signal. So, it would be great to have some mixed signal verification technologies discussed. In other words, how to integrate the analog and digital domains to provide a mixed signal verification solution for Silicon Realization, a key component of the overall Cadence EDA360 initiative.

Silicon Realization represents everything it takes to get a design into silicon. The result could be an analog or digital IP block for an SoC, an IP subsystem, or a complete IC without embedded software. Silicon Realization increasingly involves the creation and integration of large and complex digital, analog, and mixed-signal IP blocks. It goes well beyond conventional “mixed-signal” designs that integrate a few small analog blocks into a digital SoC.

Just a few thoughts for your</description>
		<content:encoded><![CDATA[<p>Srini,</p>
<p>Most of your verification technologies discussed are mainly digital centric. As you are well aware, at 65nm and below, all Chips, SoCs and Systems are mixed signal. So, it would be great to have some mixed signal verification technologies discussed. In other words, how to integrate the analog and digital domains to provide a mixed signal verification solution for Silicon Realization, a key component of the overall Cadence EDA360 initiative.</p>
<p>Silicon Realization represents everything it takes to get a design into silicon. The result could be an analog or digital IP block for an SoC, an IP subsystem, or a complete IC without embedded software. Silicon Realization increasingly involves the creation and integration of large and complex digital, analog, and mixed-signal IP blocks. It goes well beyond conventional “mixed-signal” designs that integrate a few small analog blocks into a digital SoC.</p>
<p>Just a few thoughts for your</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pre-DAC round-up of Verification technologies by Adam Sherer</title>
		<link>http://www.cvcblr.com/blog/?p=170&#038;cpage=1#comment-1718</link>
		<dc:creator>Adam Sherer</dc:creator>
		<pubDate>Mon, 07 Jun 2010 13:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.cvcblr.com/blog/?p=170#comment-1718</guid>
		<description>Don&#039;t forget to check out some of these companies and others at the OVM/UVM booth #1350.  The OVM and UVM partners provide an ecosystem that embodies the EDA360 collaboration needed to verify advanced applications.

You can find all of the details of the OVM/VMM booth here:  http://www.ovmworld.org/tradeshows_dac2010.php

=Adam Sherilog</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget to check out some of these companies and others at the OVM/UVM booth #1350.  The OVM and UVM partners provide an ecosystem that embodies the EDA360 collaboration needed to verify advanced applications.</p>
<p>You can find all of the details of the OVM/VMM booth here:  <a href="http://www.ovmworld.org/tradeshows_dac2010.php" rel="nofollow">http://www.ovmworld.org/tradeshows_dac2010.php</a></p>
<p>=Adam Sherilog</p>
]]></content:encoded>
	</item>
</channel>
</rss>
