• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Python myhdl.now函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中myhdl.now函数的典型用法代码示例。如果您正苦于以下问题:Python now函数的具体用法?Python now怎么用?Python now使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了now函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: tbstim

 def tbstim():
   yield delay(10)
   print("{0:<8d} ".format(now()))
   yield delay(1000)
   print("{0:<8d} ".format(now()))
   for _ in range(10):
     yield delay(1000)
开发者ID:Aravind-Suresh,项目名称:myhdl,代码行数:7,代码来源:test_issue_104.py


示例2: bench

    def bench(self):
        clk = Signal(0)
        sig1 = Signal(0)
        sig2 = Signal(0)
        td = 10

        def gen(s, n):
            for i in range(n-1):
                yield delay(td)
            s.next = 1
            yield delay(td)

        for i in range(10):
            offset = now()
            n0 = randrange(1, 50)
            n1 = randrange(1, 50)
            n2 = randrange(1, 50)
            sig1.next = 0
            sig2.next = 0
            yield join(delay(n0*td), gen(sig1, n1), gen(sig2, n2))
            assert sig1.val == 1
            assert sig2.val == 1
            assert now() == offset + td * max(n0, n1, n2)

        raise StopSimulation("Joined concurrent generator yield")
开发者ID:Aravind-Suresh,项目名称:myhdl,代码行数:25,代码来源:test_Simulation.py


示例3: bench

    def bench(self):
        clk = Signal(0)
        sig1 = Signal(0)
        sig2 = Signal(0)
        td = 10

        def gen(s, n):
            s.next = 0
            for i in range(n):
                yield delay(td)
            s.next = 1

        for i in range(100):
            offset = now()
            n1 = randrange(2, 10)
            n2 = randrange(n1+1, 20) # n2 > n1
            yield delay(0), gen(sig1, n1), gen(sig2, n2)
            self.assertEqual(sig1.val, 0)
            self.assertEqual(sig2.val, 0)
            self.assertEqual(now(), offset + 0)
            yield sig1.posedge
            self.assertEqual(sig2.val, 0)
            self.assertEqual(now(), offset + n1*td)
            yield sig2.posedge
            self.assertEqual(now(), offset + n2*td)
        
        raise StopSimulation, "Zero delay yield"
开发者ID:Alisa-lisa,项目名称:uni-stuff,代码行数:27,代码来源:test_Simulation.py


示例4: mon_state

 def mon_state():
     print("  :{:<8d}: initial state {}".format(
         now(), str(state)))
         
     while True:
         yield state
         print("  :{:<8d}: state transition --> {}".format(
             now(), str(state)))
开发者ID:FelixVi,项目名称:rhea,代码行数:8,代码来源:spi.py


示例5: toHost_check

 def toHost_check():
     """
     Wait for a write to toHost register.
     """
     if toHost != 1:
         raise Error('Test failed. MTOHOST = {0}. Time = {1}'.format(toHost, now()))
     print("Time: {0}".format(now()))
     raise StopSimulation
开发者ID:AngelTerrones,项目名称:Algol,代码行数:8,代码来源:test_core.py


示例6: test

        def test():
            for i in range(0, 100, 2):
                self.assertEquals(now(), i*half_period)
                yield clk.posedge
                self.assertEquals(now(), (i+1)*half_period)
                yield clk.negedge

            raise StopSimulation()
开发者ID:matthijsbos,项目名称:fpgaedu,代码行数:8,代码来源:test_clockgen.py


示例7: tb_monitor

 def tb_monitor():
     if SLWR or SLRD or SLOE or FLAGA or FLAGB or FLAGC or FLAGD:
         fm.trace_print('   %d control signal changed' % (now()))
     if ADDR == 0:
         fm.trace_print('   %d address is zero' % (now()))
     else:
         fm.trace_print('   %d address not zero %d' % (now(), ADDR))
     if FDI != FDO:
         fm.trace_print('   %d data input != output' % (now()))
开发者ID:FelixVi,项目名称:rhea,代码行数:9,代码来源:fx2_model.py


示例8: stimulus

 def stimulus():
     a = Signal(0)
     yield delay(10)
     a.next = 1
     yield None, delay(10)
     assert a.val == 0
     assert now() == 10
     yield delay(0)
     assert a.val == 1
     assert now() == 10
开发者ID:Aravind-Suresh,项目名称:myhdl,代码行数:10,代码来源:test_Simulation.py


示例9: stimulus

 def stimulus():
     a = Signal(0)
     yield delay(10)
     a.next = 1
     yield None, delay(10)
     self.assertEqual(a.val, 0)
     self.assertEqual(now(), 10)
     yield delay(0)
     self.assertEqual(a.val, 1)
     self.assertEqual(now(), 10)
开发者ID:Alisa-lisa,项目名称:uni-stuff,代码行数:10,代码来源:test_Simulation.py


示例10: tb_reset

 def tb_reset():
     while True:
         print('%8d ... Wait Reset' % (now()))
         yield self.doreset.posedge
         print('%8d ... Do Reset' % (now()))
         fx.RST.next = False
         yield delay(13*self.IFCLK_TICK)
         fx.RST.next = True
         yield delay(13*self.IFCLK_TICK)
         self.doreset.next = False
         print('%8d ... End Reset' % (now()))
开发者ID:FelixVi,项目名称:rhea,代码行数:11,代码来源:fx2_model.py


示例11: _wait_empty

 def _wait_empty(self, ep, timeout=100):
     ok = False
     to = timeout * 1e6
     te = now() + to
     for ii in range(timeout):
         if self.isempty(ep):
             ok = True
             break
         time.sleep(1)
         if now() > te:
             break
     return ok
开发者ID:gbin,项目名称:rhea,代码行数:12,代码来源:_fpgalink_host.py


示例12: tbstim

 def tbstim():
     yield clkwait(hostintf.clk, count=20)
     yield hostintf.writeconfig(0x340, 0x00000002)
     yield mdiointf.mdc.posedge
     time_mdc = now()
     yield mdiointf.mdc.posedge
     time_mdc = now() - time_mdc
     yield hostintf.clk.posedge
     time_hostclk = now()
     yield hostintf.clk.posedge
     time_hostclk = now() - time_hostclk
     assert time_hostclk == time_mdc / 6
开发者ID:ravijain056,项目名称:GEMAC,代码行数:12,代码来源:test_mangement.py


示例13: computePL1

 def computePL1():
     done.next = state_done
     if not state_go: # state_go
         state_done.next = False # state_done
         stage_m.next = False # stage_mp
         sig_l1c.next = 0
         for i in range(r_l1m): sig_l1m[i] = 0
         conv_cord_x.next = 0
         conv_cord_y.next = 0
         patch_x.next = 0
         patch_y.next = 0
         patch_cumu.next = False
         if go:
             state_go.next = True
             if __debug__:
                 print " now %s good state start" % now()
     else:
         if not state_done: # state_done
             if not stage_m: # stage_mp
                 if __debug__:
                     print " now %s stage p x %u y %u p %u %u" % (
                         now(), conv_cord_x, conv_cord_y,
                         patch_x, patch_y)
                 if not patch_cumu:
                     fltidx = patch_x + patch_y * p
                     pixidx = (conv_cord_x + patch_x) + (conv_cord_y + patch_y) * p
                     sig_l1c.next = sig_l1c + filter[fltidx] * pixels[pixidx]
                     if patch_x >= p-1 and patch_y >= p-1:
                         patch_cumu.next = True
                     elif patch_x >= p-1:
                         patch_x.next = 0
                         patch_y.next = patch_y + 1
                     else:
                         patch_x.next = patch_x + 1
                 else:
                     pixidx = conv_cord_x + conv_cord_y * p
                     mid1c[pixidx] = sig_l1c[16:8]
                     patch_cumu.next = False
                     patch_x.next = 0
                     patch_y.next = 0
                     if conv_cord_x >= n_l1c - 1 and conv_cord_y >= n_l1c - 1:
                         stage_m.next = True
                     elif conv_cord_x == n_l1c - 1:
                         conv_cord_x.next = 0
                         conv_cord_y.next = conv_cord_y + 1
                     else:
                         conv_cord_x.next = conv_cord_x + 1
             else:
                 if __debug__:
                     print " now %s stage m x %u y %u p %u %u" % (
                         now(), conv_cord_x, conv_cord_y,
                         patch_x, patch_y)
                 state_done.next = True
开发者ID:minghuadev,项目名称:minecraft-tests,代码行数:53,代码来源:mtcnn_pnet_l1_v2.py


示例14: _wait_data

 def _wait_data(self, ep, num=1, timeout=100):
     ok = False
     to = timeout * 1e6
     te = now() + to
     for ii in range(timeout):
         if self.isdata(ep, num=num):
             ok = True
             break
         time.sleep(1)
         if now() > te:
             break
     return ok
开发者ID:gbin,项目名称:rhea,代码行数:12,代码来源:_fpgalink_host.py


示例15: response

 def response(self, clause, expected):
     self.assert_(len(expected) > 100) # we should test something
     i = 0
     while 1:
         yield clause
         self.assertEqual(now(), expected[i])
         i += 1
开发者ID:Alisa-lisa,项目名称:uni-stuff,代码行数:7,代码来源:test_Simulation.py


示例16: monitor

 def monitor():
     yield self.rx_ready.posedge, delay(500000)
     yield delay(1)
     print(now())
     self.assertEquals(self.rx_msg, 0x0FFFFFFFFFFF)
     self.assertTrue(self.rx_ready)
     self.stop_simulation()
开发者ID:matthijsbos,项目名称:fpgaedu,代码行数:7,代码来源:test_board_component_rx.py


示例17: tbstim

        def tbstim():
            resetext.next = not resetext.active
            yield delay(33*ticks_per_ns)

            for ii in range(3):
                yield dripple.posedge
                ts = myhdl.now()
                yield dripple.posedge
                td = myhdl.now() - ts
                yield delay(100*ticks_per_ns)
                print(td, 2*ticks_per_ns*1e3)
                # assert td == 2 * ticks_per_ns * 1e3

            yield delay(100*ticks_per_ns)

            raise myhdl.StopSimulation
开发者ID:Godtec,项目名称:rhea,代码行数:16,代码来源:test_device_clock_mgmt.py


示例18: response

 def response(self, clause, expected):
     assert len(expected) > 100  # we should test something
     i = 0
     while 1:
         yield clause
         assert now() == expected[i]
         i += 1
开发者ID:Aravind-Suresh,项目名称:myhdl,代码行数:7,代码来源:test_Simulation.py


示例19: testlogic

 def testlogic():
     reset.next = 0
     yield delay(15)
     reset.next = 1
     yield delay(20)
     print("Converted! %d" % now())
     raise StopSimulation
开发者ID:ravijain056,项目名称:GEMAC,代码行数:7,代码来源:test_rxengine.py


示例20: testRedundantNegedges

 def testRedundantNegedges(self):
     """ Redundant negedge waveform test """
     s = self.sig
     stimulus = self.stimulus()
     expected = getExpectedTimes(self.waveform, isNegedge)
     response = self.response(clause=(s.negedge,) * 9, expected=expected)
     self.runSim(Simulation(stimulus, response))
     assert self.duration <= now()
开发者ID:Aravind-Suresh,项目名称:myhdl,代码行数:8,代码来源:test_Simulation.py



注:本文中的myhdl.now函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python myhdl.toVHDL函数代码示例发布时间:2022-05-27
下一篇:
Python myhdl.modbv函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap