Skip to content

Commit

Permalink
Merge pull request #852 from Xilinx/fix/alveo_build
Browse files Browse the repository at this point in the history
Set axilite address range to a minimum of 4K
  • Loading branch information
auphelia authored Jul 11, 2023
2 parents a3b6a7f + 3873325 commit e76f20d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/finn/transformation/fpgadataflow/create_stitched_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ def apply(self, model):
puts "CRITICAL WARNING: Unable to construct address map for $port."
} {
set range [expr 2**$awidth]
set range [expr $range < 4096 ? 4096 : $range]
puts "INFO: Building address map for $port: 0+:$range"
set name [get_property NAME $port]
set addr_block [ipx::add_address_block Reg0 [ipx::add_memory_map $name $core]]
Expand Down

0 comments on commit e76f20d

Please sign in to comment.