moved _y_a_B away from the out req lines to avoid more parasitic capacitance in neuron hs

This commit is contained in:
alexmadison 2022-06-22 20:34:59 +02:00
parent 4d4183f714
commit 144d89fb90
1 changed files with 1 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@ defproc decoder_2d_hybrid (avMx1of2<NxC+NyC> in; bool! out_req_x[Nx], out_req_y[
A_2P_U_X4 pu_y(.p1 = outy.a, .p2 = _reqB, .y = outy.r, .vdd = supply.vdd, .vss = supply.vss);
// x_req pull up
A_3P_U_X4 pu_x(.p1 = outx.a, .p2 = _reqB, .p3 = _y_a_B, .y = outx.r,
A_3P_U_X4 pu_x(.p1 = outx.a, .p2 = _y_a_B, .p3 = _reqB, .y = outx.r,
.vdd = supply.vdd, .vss = supply.vss);