Skip to content

Commit

Permalink
timming
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Alberto committed Jul 1, 2021
1 parent 3bbdacc commit 4c2b404
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib/project_manager/tools/edalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ export class Edalize extends tool_base.Tool_base{
let runs_folder = `${project_name}.runs`;
let synt_file = `${top_level}_utilization_synth.rpt`;
let imp_file = `${top_level}_utilization_placed.rpt`;
let time_file = `${top_level}_timing_summary_routed.rpt`;
let synt_path = path_lib.join(homedir, '.teroshdl', 'build', runs_folder, 'synth_1', synt_file);
let imp_path = path_lib.join(homedir, '.teroshdl', 'build', runs_folder, 'impl_1', imp_file);
let time_path = path_lib.join(homedir, '.teroshdl', 'build', runs_folder, 'impl_1', time_file);

let builds = [
{
Expand All @@ -97,6 +99,10 @@ export class Edalize extends tool_base.Tool_base{
{
name: 'Implementation utilization design information',
location: imp_path
},
{
name: 'Timming report',
location: time_path
}
];
return builds;
Expand Down

0 comments on commit 4c2b404

Please sign in to comment.