fixed encoder2d tests, just changed labels, lowercase d

This commit is contained in:
alexmadison 2023-11-21 10:19:21 +01:00
parent 73acbcbc4f
commit db39324593
3 changed files with 9 additions and 9 deletions

View File

@ -34,8 +34,8 @@ open std::data;
open tmpl::dataflow_neuro;
defproc encoder2D_2x2 (a1of1 x[2]; a1of1 y[2]; avMx1of2<2> out){
encoder2D<1, 1, 2, 2, 1> e(.x=x, .y=y, .out=out);
defproc encoder2d_2x2 (a1of1 x[2]; a1of1 y[2]; avMx1of2<2> out){
encoder2d<1, 1, 2, 2, 1> e(.inx=x, .iny=y, .out=out);
bool _reset_B;
prs {
Reset => _reset_B-
@ -46,4 +46,4 @@ defproc encoder2D_2x2 (a1of1 x[2]; a1of1 y[2]; avMx1of2<2> out){
}
encoder2D_2x2 e;
encoder2d_2x2 e;

View File

@ -34,8 +34,8 @@ open std::data;
open tmpl::dataflow_neuro;
defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[7]; avMx1of2<6> out){
encoder2D<3, 3, 8, 7, 1> e(.x=x, .y=y, .out=out);
defproc encoder2d_2x2 (a1of1 x[8]; a1of1 y[7]; avMx1of2<6> out){
encoder2d<3, 3, 8, 7, 1> e(.inx=x, .iny=y, .out=out);
bool _reset_B;
prs {
Reset => _reset_B-
@ -46,4 +46,4 @@ defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[7]; avMx1of2<6> out){
}
encoder2D_2x2 e;
encoder2d_2x2 e;

View File

@ -34,8 +34,8 @@ open std::data;
open tmpl::dataflow_neuro;
defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[8]; avMx1of2<6> out){
encoder2D<3, 3, 8, 8, 1> e(.x=x, .y=y, .out=out);
defproc encoder2d_2x2 (a1of1 x[8]; a1of1 y[8]; avMx1of2<6> out){
encoder2d<3, 3, 8, 8, 1> e(.inx=x, .iny=y, .out=out);
bool _reset_B;
prs {
Reset => _reset_B-
@ -46,4 +46,4 @@ defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[8]; avMx1of2<6> out){
}
encoder2D_2x2 e;
encoder2d_2x2 e;