Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
tp-sobel-etudiant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tp-vhdl
tp-sobel-etudiant
Commits
a470a307
Commit
a470a307
authored
1 month ago
by
BAZIN Jean-Noel
Browse files
Options
Downloads
Patches
Plain Diff
update constraints in tcl and image path in sobelsys
parent
cf0f45f6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
proj/create_project.tcl
+16
-6
16 additions, 6 deletions
proj/create_project.tcl
src/hdl/sobelSys.vhd
+1
-1
1 addition, 1 deletion
src/hdl/sobelSys.vhd
with
17 additions
and
7 deletions
proj/create_project.tcl
+
16
−
6
View file @
a470a307
...
...
@@ -41,9 +41,13 @@ if {[string equal [get_filesets -quiet sources_1] ""]} {
create_fileset -srcset sources_1
}
# Create 'constrs_1' fileset (if not found)
if
{[
string equal
[
get_filesets -quiet constrs_1
]
""
]}
{
create_fileset -constrset constrs_1
# Create 'constrs_Nexys4' fileset (if not found)
if
{[
string equal
[
get_filesets -quiet constrs_Nexys4
]
""
]}
{
create_fileset -constrset constrs_Nexys4
}
if
{[
string equal
[
get_filesets -quiet constrs_Nexys4DDR_A7
]
""
]}
{
create_fileset -constrset constrs_Nexys4DDR_A7
}
# Set IP repository paths
...
...
@@ -57,14 +61,15 @@ add_files -quiet $src_dir/hdl
add_files -quiet
[
glob -nocomplain ../src/ip/*/*.xci
]
# Add constraints
add_files -fileset constrs_1 -quiet $src_dir/constraints
add_files -fileset constrs_Nexys4 -quiet $src_dir/constraints/Nexys4_Sobel.xdc
add_files -fileset constrs_Nexys4DDR_A7 -quiet $src_dir/constraints/Nexys4VideoA7_Sobel.xdc
# Refresh IP Repositories
#update_ip_catalog
# Create 'synth_1' run (if not found)
if
{[
string equal
[
get_runs -quiet synth_1
]
""
]}
{
create_run -name synth_1 -part $part_num -flow
{
Vivado Synthesis 2014
}
-strategy
"Flow_PerfOptimized_High"
-constrset constrs_
1
create_run -name synth_1 -part $part_num -flow
{
Vivado Synthesis 2014
}
-strategy
"Flow_PerfOptimized_High"
-constrset constrs_
Nexys4
}
else
{
set_property strategy
"Flow_PerfOptimized_High"
[
get_runs synth_1
]
set_property flow
"Vivado Synthesis 2014"
[
get_runs synth_1
]
...
...
@@ -83,7 +88,7 @@ current_run -synthesis [get_runs synth_1]
# Create 'impl_1' run (if not found)
if
{[
string equal
[
get_runs -quiet impl_1
]
""
]}
{
create_run -name impl_1 -part $part_num -flow
{
Vivado Implementation 2014
}
-strategy
"Vivado Implementation Defaults"
-constrset constrs_
1
-parent_run synth_1
create_run -name impl_1 -part $part_num -flow
{
Vivado Implementation 2014
}
-strategy
"Vivado Implementation Defaults"
-constrset constrs_
Nexys4
-parent_run synth_1
}
else
{
set_property strategy
"Vivado Implementation Defaults"
[
get_runs impl_1
]
set_property flow
"Vivado Implementation 2014"
[
get_runs impl_1
]
...
...
@@ -105,6 +110,11 @@ set_property used_in_synthesis false [get_files ../src/hdl/tb_regUnit.vhd]
set_property used_in_synthesis false
[
get_files ../src/hdl/tb_sobelProc.vhd
]
set_property used_in_synthesis false
[
get_files ../src/hdl/tb_sobelSys.vhd
]
set_property constrset constrs_Nexys4
[
get_runs synth_1
]
set_property constrset constrs_Nexys4
[
get_runs impl_1
]
delete_fileset
[
get_filesets constrs_1
]
#puts "INFO: Project created:$proj_name"
# Comment the following section, if there is no block design
...
...
This diff is collapsed.
Click to expand it.
src/hdl/sobelSys.vhd
+
1
−
1
View file @
a470a307
...
...
@@ -181,7 +181,7 @@ begin
G_MemoryWidth
=>
8
,
G_MemoryDepth
=>
10000
,
G_AddressWidth
=>
14
,
G_InitFileName
=>
"dancing_spider.txt"
G_InitFileName
=>
"
../data/
dancing_spider.txt"
)
port
map
(
I_clk
=>
S_clk_25MHz
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment