The-OpenROAD-Project / OpenSTA

OpenSTA engine
GNU General Public License v3.0
399 stars 172 forks source link

read_liberty warning #12

Closed tingjung closed 5 years ago

tingjung commented 5 years ago

Hi James, I got the warnings below after executing read_liberty command.

Warning: axis type normalized_voltage not supported. Warning: missing variable_2 attribute.

This is the lookup table which caused the warnings

lu_table_template (waveform_template_name) {
 variable_1: input_net_transition;
 variable_2: normalized_voltage;
 index_1 ("float…, float");
 index_2 ("float…, float");
 }

This variable is supported by Liberty format but may be unused here. Should I just ignore the warning messages like these? Thanks!

jjcherry56 commented 5 years ago

like it says, it is not supported. if you depend on functionality related to that attribute it won't work.

On Thursday, December 13, 2018, Ting-Jung Chang notifications@github.com wrote:

Hi James, I got the warnings below after executing read_liberty command.

Warning: axis type normalized_voltage not supported. Warning: missing variable_2 attribute.

This is the lookup table which caused the warnings

lu_table_template (waveform_template_name) {

variable_1: input_net_transition;

variable_2: normalized_voltage;

index_1 ("float…, float");

index_2 ("float…, float");

}

This variable is supported by Liberty format but may be unused here. Should I just ignore the warning messages like these? Thanks!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/abk-openroad/OpenSTA/issues/12, or mute the thread https://github.com/notifications/unsubscribe-auth/AhI8lbpy6R54i9Px992Y9qSOA2hg5u8Eks5u4rltgaJpZM4ZSX8_ .

tingjung commented 5 years ago

ok. Thanks!