forked from sridhargopinath/EdgeML
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replaced the print stagement using logging (error, warning, info and debug levels used). Added progress bar using tqdm package in performSearch function for the 4 stages of exploration. Changes Antlr Check version to 4.9.1. Added requirements.txt * Added more information to the print statment that prints the stage of exploration. * Added log level as a command line argument. Added descriptive error messages. * Reverted parameters to old state * Slight changes to the strings printed by logging * Resolved formatting comments * Updated README.md with comand to change logging level * Converted the log level input arguments to lowercase strings
- haunter_approach2
- haunter_demoted_approach3
- haunter_fixed
- haunter_posit
- krantikiran_fixed_vbw_improved
- krantikiran_haunter
- krantikiran_haunter_demoted_approach3
- krantikiran_haunter_multipleBw_Promotion
- krantikiran_new-representation
- krantikiran_working_posit_novbw
- krantikiran_zero_skew
- (#2)
- krantikiran_zero_skew_range_vbw
- krantikiran_zero_skew_unsigned
- new-representation
- new-seedot
- new-seedot-shift
- shikhar_bfloat16_uniform_baseline
- shikhar_fixed_vbw_accuracy_only
- shikhar_fixed_vbw_accuracy_only_promotion
- shikhar_fixed_vbw_baseline
- shikhar_fixed_vbw_haunter
- shikhar_fixed_vbw_size_only
- shikhar_fixed_vbw_size_only_decreasing
- shikhar_fixed_vbw_squeezenet
- shikhar_float16_uniform_baseline
- shikhar_float_fixed_uniform_baseline
- shikhar_float_fixed_uniform_squeezenet
- shikhar_posit_bruteforce
- shikhar_posit_uniform_vbw_baseline
- shikhar_posit_vbw_accuracy_only
- shikhar_posit_vbw_accuracy_only_promotion
- shikhar_posit_vbw_haunter
- shikhar_posit_vbw_haunter_squeezenet
- shikhar_posit_vbw_size_only
- shikhar_posit_vbw_size_only_decreasing
- shikhar_zskew_uniform_baseline
- shikhar_zskew_uniform_squeezenet
- shikhar_zskew_vbw_baseline
- shikhar_zskew_vbw_improved
- sirnn
- tfconv-generator
1 parent
39668ef
commit 30c7eeb
Showing
13 changed files
with
145 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
"-t", | ||
"x86", | ||
"-n", | ||
"1" | ||
"1", | ||
] | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
antlr4-python3-runtime==4.7 | ||
bokeh==2.2.3 | ||
certifi==2020.12.5 | ||
Jinja2==2.11.2 | ||
joblib==1.0.0 | ||
MarkupSafe==1.1.1 | ||
numpy==1.19.5 | ||
onnx==1.8.0 | ||
packaging==20.8 | ||
Pillow==8.1.0 | ||
protobuf==3.14.0 | ||
pyparsing==2.4.7 | ||
python-dateutil==2.8.1 | ||
PyYAML==5.3.1 | ||
scikit-learn==0.24.0 | ||
scipy==1.6.0 | ||
six==1.15.0 | ||
threadpoolctl==2.1.0 | ||
tornado==6.1 | ||
tqdm==4.56.0 | ||
typing-extensions==3.7.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters