您当前的位置: 首页 >  网络

FPGA硅农

暂无认证

  • 0浏览

    0关注

    282博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

卷积神经网络相关函数的C/C++实现

FPGA硅农 发布时间:2020-12-02 10:01:47 ,浏览量:0

浮点卷积

void conv(int ch_in,int ch_out,int pad,int stride,int k,int h,int w,
          float* in,float *weight,float *bias,float *out){
    int h_o,w_o;
    int i,j,n,m;
    int kx,ky;
    h_o=(h-k+2*pad)/stride+1;
    w_o=(w-k+2*pad)/stride+1;
    for(i=0;i            
关注
打赏
1658642721
查看更多评论
0.3109s