From f7d2db9ef3e944f8a015b8c14aa0f9436242a9f9 Mon Sep 17 00:00:00 2001 From: alexmadison Date: Thu, 14 Apr 2022 16:37:53 +0200 Subject: [PATCH] cleaned decoder code --- dataflow_neuro/coders.act | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dataflow_neuro/coders.act b/dataflow_neuro/coders.act index a03849c..4768a87 100644 --- a/dataflow_neuro/coders.act +++ b/dataflow_neuro/coders.act @@ -426,12 +426,8 @@ defproc decoder_2d_hybrid (avMx1of2 in; a1of1 out[Nx*Ny]; bool? dly_cfg // Validity - vtree vtree_x (.in = d_dr_x.in, .supply = supply); - vtree vtree_y (.in = d_dr_y.in, .supply = supply); - // (i:0..NxC-1:vtree_x.in.d[i].t = d_dr_x.in.d[i].t;) - // (i:0..NxC-1:vtree_x.in.d[i].f = d_dr_x.in.d[i].f;) - // (i:0..NyC-1:vtree_y.in.d[i].t = d_dr_y.in.d[i].t;) - // (i:0..NyC-1:vtree_y.in.d[i].f = d_dr_y.in.d[i].f;) + vtree vtree_x (.in = d_dr_x.final_refresh, .supply = supply); + vtree vtree_y (.in = d_dr_y.final_refresh, .supply = supply); A_2C_B_X1 valid_Cel(.c1 = vtree_x.out, .c2 = vtree_y.out, .y = addr_buf.out.v, .vdd = supply.vdd, .vss = supply.vss);