import "primitives/std.lib"; import "primitives/math.futil"; component main() -> () { cells { @external(1) x = std_mem_d2(32, 1, 4, 1, 3); @external(1) x1 = std_mem_d2(32, 1, 4, 1, 3); sqrt_1x4_ = sqrt_1x4(); } wires { } control { seq { invoke sqrt_1x4_(x0_0_read_data=x.read_data, x10_0_done=x1.done, x10_0_read_data=x1.read_data)(x0_0_addr0=x.addr0, x0_0_addr1=x.addr1, x10_0_write_data=x1.write_data, x10_0_write_en=x1.write_en, x10_0_addr0=x1.addr0, x10_0_addr1=x1.addr1); } } } component sqrt_1x4(x0_0_read_data: 32, x0_0_done: 1, x10_0_read_data: 32, x10_0_done: 1) -> (x0_0_write_data: 32, x0_0_write_en: 1, x0_0_addr0: 1, x0_0_addr1: 3, x10_0_write_data: 32, x10_0_write_en: 1, x10_0_addr0: 1, x10_0_addr1: 3) { cells { __i0 = std_reg(1); __j0 = std_reg(3); __tmp_0 = std_reg(32); add0 = std_add(3); add1 = std_add(1); const0 = std_const(1,0); const1 = std_const(1,0); const2 = std_const(3,0); const3 = std_const(3,3); const4 = std_const(3,1); const5 = std_const(1,1); le0 = std_le(1); le1 = std_le(3); sqrt0 = sqrt(32); x_read0_0 = std_reg(32); } wires { group cond0<"static"=0> { cond0[done] = 1'd1; le0.left = __i0.out; le0.right = const1.out; } group cond1<"static"=0> { cond1[done] = 1'd1; le1.left = __j0.out; le1.right = const3.out; } group let0<"static"=1> { __i0.in = const0.out; __i0.write_en = 1'd1; let0[done] = __i0.done; } group let1<"static"=1> { __j0.in = const2.out; __j0.write_en = 1'd1; let1[done] = __j0.done; } group let2 { __tmp_0.in = sqrt0.out; __tmp_0.write_en = 1'd1; let2[done] = __tmp_0.done; } group upd0<"static"=1> { x_read0_0.write_en = 1'd1; x0_0_addr1 = __j0.out; x0_0_addr0 = __i0.out; x_read0_0.in = 1'd1 ? x0_0_read_data; upd0[done] = x_read0_0.done ? 1'd1; } group upd1<"static"=1> { x10_0_addr1 = __j0.out; x10_0_addr0 = __i0.out; x10_0_write_en = 1'd1; x10_0_write_data = 1'd1 ? __tmp_0.out; upd1[done] = x10_0_done ? 1'd1; } group upd2<"static"=1> { __j0.write_en = 1'd1; add0.left = __j0.out; add0.right = const4.out; __j0.in = 1'd1 ? add0.out; upd2[done] = __j0.done ? 1'd1; } group upd3<"static"=1> { __i0.write_en = 1'd1; add1.left = __i0.out; add1.right = const5.out; __i0.in = 1'd1 ? add1.out; upd3[done] = __i0.done ? 1'd1; } } control { seq { let0; @bound(1) while le0.out with cond0 { seq { let1; @bound(4) while le1.out with cond1 { seq { upd0; invoke sqrt0(in=x_read0_0.out)(); let2; upd1; upd2; } } upd3; } } } } }