fixed encoder2d tests, just changed labels, lowercase d
This commit is contained in:
parent
73acbcbc4f
commit
db39324593
@ -34,8 +34,8 @@ open std::data;
|
|||||||
|
|
||||||
open tmpl::dataflow_neuro;
|
open tmpl::dataflow_neuro;
|
||||||
|
|
||||||
defproc encoder2D_2x2 (a1of1 x[2]; a1of1 y[2]; avMx1of2<2> out){
|
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);
|
encoder2d<1, 1, 2, 2, 1> e(.inx=x, .iny=y, .out=out);
|
||||||
bool _reset_B;
|
bool _reset_B;
|
||||||
prs {
|
prs {
|
||||||
Reset => _reset_B-
|
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;
|
@ -34,8 +34,8 @@ open std::data;
|
|||||||
|
|
||||||
open tmpl::dataflow_neuro;
|
open tmpl::dataflow_neuro;
|
||||||
|
|
||||||
defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[7]; avMx1of2<6> out){
|
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);
|
encoder2d<3, 3, 8, 7, 1> e(.inx=x, .iny=y, .out=out);
|
||||||
bool _reset_B;
|
bool _reset_B;
|
||||||
prs {
|
prs {
|
||||||
Reset => _reset_B-
|
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;
|
@ -34,8 +34,8 @@ open std::data;
|
|||||||
|
|
||||||
open tmpl::dataflow_neuro;
|
open tmpl::dataflow_neuro;
|
||||||
|
|
||||||
defproc encoder2D_2x2 (a1of1 x[8]; a1of1 y[8]; avMx1of2<6> out){
|
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);
|
encoder2d<3, 3, 8, 8, 1> e(.inx=x, .iny=y, .out=out);
|
||||||
bool _reset_B;
|
bool _reset_B;
|
||||||
prs {
|
prs {
|
||||||
Reset => _reset_B-
|
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;
|
Loading…
Reference in New Issue
Block a user