上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 1、原题 2、代码 @A = (5,6,7); # 数组用@和圆括号,用$A[index]访问;哈希用%和圆括号,用 # $A{'key'}访问 @B = (6,7,8); @intersection; @union; # 计算交集,依次取出A中元素,判断其是否与B中的某个元素相等 foreach 阅读全文
posted @ 2020-03-05 09:59 笑着刻印在那一张泛黄 阅读(381) 评论(0) 推荐(0)
摘要: 1、原题 2、代码 module sequence_detect( input clk, input rst_n, input [7:0] stringB_in, input stringB_en , input stringB_over , output reg [4:0] location, o 阅读全文
posted @ 2020-03-04 22:07 笑着刻印在那一张泛黄 阅读(1058) 评论(0) 推荐(1)
摘要: 1、引言 主要创新: 1)complementary search techniques 2)new efficient versions of nonlinearities practical for mobile setting 3)new efficient network design 4) 阅读全文
posted @ 2020-03-03 11:23 笑着刻印在那一张泛黄 阅读(351) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/dxs959229640/p/8144656.html 写时钟频率 w_clk, 读时钟频率 r_clk, 写时钟周期里,每B个时钟周期会有A个数据写入FIFO 读时钟周期里,每Y个时钟周期会有X个数据读出FIFO 则,FIFO的最小深度是? 首先,这 阅读全文
posted @ 2020-03-02 21:28 笑着刻印在那一张泛黄 阅读(545) 评论(0) 推荐(1)
摘要: 1、原题 2、代码 class class_a; rand bit signed [7:0] a[4]; bit [1:0] mode; function new(bit [1:0] mode); // 注意分号结尾 mode = mode; endfunction constraint reaso 阅读全文
posted @ 2020-03-02 21:10 笑着刻印在那一张泛黄 阅读(527) 评论(0) 推荐(0)
摘要: 1、FPGA之毛刺问题 https://blog.csdn.net/weixin_43417303/article/details/104316390 2、竞争冒险 https://wenku.baidu.com/view/6ebe4f8bd0d233d4b14e6928.html http://w 阅读全文
posted @ 2020-02-29 17:50 笑着刻印在那一张泛黄 阅读(548) 评论(0) 推荐(1)
摘要: 参考博客:https://blog.csdn.net/Lily_9/article/details/90041359 https://www.cnblogs.com/sepeng/p/5578402.html 阅读全文
posted @ 2020-02-29 16:56 笑着刻印在那一张泛黄 阅读(435) 评论(0) 推荐(0)
摘要: 1、数据增强 1)随机裁剪 在原始图片的每一边pad 4个 pixels,然后再裁切成32*32的图片 distorted_images = tf.image.resize_image_with_crop_or_pad(record_images, imageHeight+8, imageWidth 阅读全文
posted @ 2020-02-29 11:48 笑着刻印在那一张泛黄 阅读(285) 评论(0) 推荐(0)
摘要: 1、Introduction 1)网络深度很重要 Deep networks naturally integrate low/mid/highlevel features and classifiers in an end-to-end multilayer fashion, and the “le 阅读全文
posted @ 2020-02-29 10:37 笑着刻印在那一张泛黄 阅读(247) 评论(0) 推荐(0)
摘要: 1、跨越缺失数据连接直线 阅读全文
posted @ 2020-02-28 09:25 笑着刻印在那一张泛黄 阅读(680) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页