Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
macroplacement
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
macroplacement
Commits
a04eedcc
Commit
a04eedcc
authored
Jan 16, 2023
by
ZhiangWang033
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add cost curve
parent
cafbcdea
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
103 deletions
+20
-103
CodeElements/SimulatedAnnealing/build/.nfs00000000005e97030000c9f0
+0
-0
CodeElements/SimulatedAnnealing/build/CMakeFiles/sa.dir/CXX.includecache
+0
-98
CodeElements/SimulatedAnnealing/build/CMakeFiles/sa.dir/src/plc_netlist_sa.cpp.o
+0
-0
CodeElements/SimulatedAnnealing/build/sa
+0
-0
CodeElements/SimulatedAnnealing/src/plc_netlist_sa.cpp
+20
-5
No files found.
CodeElements/SimulatedAnnealing/build/.nfs00000000005e97030000c9f0
deleted
100755 → 0
View file @
cafbcdea
File deleted
CodeElements/SimulatedAnnealing/build/CMakeFiles/sa.dir/CXX.includecache
View file @
a04eedcc
...
...
@@ -60,16 +60,6 @@ cassert
basic_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/basic_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/main.cpp
iostream
-
chrono
-
sstream
-
plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/net.h
vector
-
...
...
@@ -134,72 +124,6 @@ grid.h
plc_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist_cost.cpp
iostream
-
map
-
vector
-
string
-
fstream
-
iomanip
-
algorithm
-
cmath
-
numeric
-
plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist_fd_placer.cpp
iostream
-
map
-
vector
-
string
-
fstream
-
iomanip
-
algorithm
-
cmath
-
numeric
-
plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist_io.cpp
iostream
-
map
-
vector
-
string
-
fstream
-
iomanip
-
algorithm
-
cmath
-
numeric
-
plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist_sa.cpp
iostream
-
...
...
@@ -222,28 +146,6 @@ numeric
plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_netlist.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_object.cpp
iostream
-
map
-
vector
-
string
-
fstream
-
iomanip
-
algorithm
-
cmath
-
numeric
-
plc_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_object.h
/home/zf4_projects/macro_placer/TILOS_repo/new_repo/MacroPlacement/CodeElements/SimulatedAnnealing/src/plc_object.h
vector
-
...
...
CodeElements/SimulatedAnnealing/build/CMakeFiles/sa.dir/src/plc_netlist_sa.cpp.o
View file @
a04eedcc
No preview for this file type
CodeElements/SimulatedAnnealing/build/sa
View file @
a04eedcc
No preview for this file type
CodeElements/SimulatedAnnealing/src/plc_netlist_sa.cpp
View file @
a04eedcc
...
...
@@ -453,6 +453,11 @@ void PBFNetlist::SimulatedAnnealing(std::vector<float> action_probs,
float
cur_cost
=
0.0
;
std
::
vector
<
float
>
cost_list
;
// we need to plot the cost curve
CallFDPlacer
();
std
::
ofstream
f
;
f
.
open
(
summary_file
);
f
.
close
();
for
(
int
num_iter
=
0
;
num_iter
<
num_iters
;
num_iter
++
)
{
// call FDPlacer to update the cost
CallFDPlacer
();
...
...
@@ -472,13 +477,23 @@ void PBFNetlist::SimulatedAnnealing(std::vector<float> action_probs,
}
cost_list
.
push_back
(
cur_cost
);
}
if
((
num_iter
+
1
)
%
5
==
0
)
{
f
.
open
(
summary_file
,
std
::
ios
::
out
|
std
::
ios
::
app
);
for
(
auto
&
value
:
cost_list
)
f
<<
value
<<
std
::
endl
;
f
.
close
();
cost_list
.
clear
();
}
// update the temperature
t
=
max_temperature
*
std
::
exp
(
t_factor
*
num_iter
/
num_iters
);
}
std
::
ofstream
f
;
f
.
open
(
summary_file
);
for
(
auto
&
value
:
cost_list
)
f
<<
value
<<
std
::
endl
;
f
.
close
();
if
(
cost_list
.
size
()
>
0
)
{
f
.
open
(
summary_file
,
std
::
ios
::
out
|
std
::
ios
::
app
);
for
(
auto
&
value
:
cost_list
)
f
<<
value
<<
std
::
endl
;
f
.
close
();
cost_list
.
clear
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment