Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!257
Minor cleanup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Minor cleanup
cleanup
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Oscar Gustafsson
requested to merge
cleanup
into
master
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
1c0245a4
2 years ago
master (base)
and
latest version
latest version
3a3d8d3b
1 commit,
2 years ago
version 1
1c0245a4
1 commit,
2 years ago
1 file
+
1
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b_asic/resources.py
+
1
−
3
Options
@@ -889,9 +889,7 @@ class ProcessCollection:
@@ -889,9 +889,7 @@ class ProcessCollection:
for
process
,
cell
in
coloring
.
items
():
for
process
,
cell
in
coloring
.
items
():
if
cell
not
in
cell_assignment
:
if
cell
not
in
cell_assignment
:
cell_assignment
[
cell
]
=
ProcessCollection
(
set
(),
self
.
_schedule_time
)
cell_assignment
[
cell
]
=
ProcessCollection
(
set
(),
self
.
_schedule_time
)
cell_assignment
[
cell
].
add_process
(
process
)
cell_assignment
[
cell
].
add_process
(
process
)
else
:
cell_assignment
[
cell
].
add_process
(
process
)
return
set
(
cell_assignment
.
values
())
return
set
(
cell_assignment
.
values
())
def
left_edge_cell_assignment
(
self
)
->
Dict
[
int
,
"
ProcessCollection
"
]:
def
left_edge_cell_assignment
(
self
)
->
Dict
[
int
,
"
ProcessCollection
"
]:
Loading