Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
05ee3bc
use x/y attributes instead of dim and loc
soheilshahrouz Oct 8, 2025
205a663
cherry-picked device grid changes from add_interposer_wires branch
soheilshahrouz Oct 8, 2025
17d8fae
add getters for interposer cuts in device grid
soheilshahrouz Oct 8, 2025
82dbc62
draw interposer cuts
soheilshahrouz Oct 8, 2025
078423e
draw interposer cuts with respect to next loc
soheilshahrouz Oct 8, 2025
45532c5
replace float* with std::vector<float> for tile_x and tile_y
soheilshahrouz Oct 8, 2025
49a4de1
don't draw interposer lines from -inf to +inf
soheilshahrouz Oct 8, 2025
2cb2c9c
dashed and wider line for interpsoer cut
soheilshahrouz Oct 8, 2025
6fefc24
doxygen comment for draw_interposer_cuts()
soheilshahrouz Oct 8, 2025
f9d8295
updated arch reference doc
soheilshahrouz Oct 8, 2025
49ac734
Merge remote-tracking branch 'origin/master' into temp_interposer_cut…
soheilshahrouz Oct 8, 2025
61f1ade
use VERT/HORX instead of X/Y
soheilshahrouz Oct 8, 2025
b28100a
make format
soheilshahrouz Oct 8, 2025
ccd3a66
update unit tests to be compatible with DeviceGrid constructors
soheilshahrouz Oct 8, 2025
a492b43
enum class e_pic_type
soheilshahrouz Oct 8, 2025
dc85bf4
ifndef NO_GRAPHICS in draw_interposer files
soheilshahrouz Oct 8, 2025
9c23b1b
fix type in the arch reference
soheilshahrouz Oct 9, 2025
3ac8bc9
check if both x and y are specified and error out
soheilshahrouz Oct 9, 2025
1d5bf45
don't use nullptr as default value of strings
soheilshahrouz Oct 9, 2025
aa8a2e5
make get_tile_width() and get_tile_height() const methods
soheilshahrouz Oct 9, 2025
5a10ec2
apply PR comments for drawing interposer
soheilshahrouz Oct 9, 2025
8979661
add doxygen comments
soheilshahrouz Oct 10, 2025
0ee28c8
draw interposer cut lines exactly in the middle of channel/between th…
soheilshahrouz Oct 10, 2025
f256e2f
Merge branch 'master' into temp_interposer_cut_dim
soheilshahrouz Oct 10, 2025
844fe90
add tile_width/tile_height to compute the middle of channel
soheilshahrouz Oct 10, 2025
cd2381e
more detailed comments
soheilshahrouz Oct 11, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix type in the arch reference
  • Loading branch information
soheilshahrouz committed Oct 9, 2025
commit 9c23b1b0911b5985d7bb1113f55a73cb34faa33a
2 changes: 1 addition & 1 deletion doc/src/arch/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ Grid Layout Example
.. arch:tag:: <interposer_cut x="int" y="int"/>

:opt_param x: Specifies the x-coordinate of a vertical interposer cut.
:opt_param y: Specifies the y-coordinate of a horizontal interposer cut.opt_param
:opt_param y: Specifies the y-coordinate of a horizontal interposer cut.

.. note:: Exactly one of the ``x`` or ``y`` attributes must be specified.

Expand Down