├── .gitignore ├── LICENSE ├── NN_layers ├── AlexNet.py ├── DarkNet19.py ├── DenseNet121.py ├── DenseNet169.py ├── DenseNet201.py ├── InceptionResnet_v2.py ├── Inception_v3.py ├── MobileNet_v1.py ├── MobileNet_v2.py ├── MobileNet_v3_large.py ├── MobileNet_v3_small.py ├── NASNet_large.py ├── NASNet_small.py ├── ResNeXt101.py ├── ResNeXt50.py ├── ResNet101.py ├── ResNet101_v2.py ├── ResNet152.py ├── ResNet152_v2.py ├── ResNet18.py ├── ResNet34.py ├── ResNet50.py ├── ResNet50_v2.py ├── SENet154.py ├── SEResNeXt101.py ├── SEResNeXt50.py ├── SEResNet101.py ├── SEResNet152.py ├── SEResNet18.py ├── SEResNet34.py ├── SEResNet50.py ├── VGG16.py ├── VGG19.py └── Xception.py ├── README.md ├── bsg_exh.py ├── bsg_ite.py ├── bsgutils.py ├── classes ├── __init__.py ├── array.py ├── exceptions.py ├── layer.py ├── layer_rounding.py ├── loop.py ├── multi_manager.py ├── order.py ├── spatial_loop.py ├── temporal_loop.py └── utilization.py ├── cost_model_funcs.py ├── evaluate.py ├── example_result_file ├── README.md ├── console_info │ └── README.md ├── example_mapping_file.mapping ├── example_output_xml_file_info_extraction.py ├── example_result_file_complete_version.pdf ├── example_result_file_complete_version.xml ├── example_result_file_concise_version.pdf ├── example_result_file_concise_version.xml ├── result_file_documentation_complete_version.pdf ├── result_file_documentation_complete_version.xml ├── result_file_documentation_concise_version.pdf └── result_file_documentation_concise_version.xml ├── im2col_funcs.py ├── input_funcs.py ├── inputs ├── README.md ├── architecture.yaml ├── mapping.yaml ├── memory_pool.yaml ├── memory_pool_exploration.yaml └── settings.yaml ├── loma.py ├── msg.py ├── output_funcs.py ├── plotting ├── README.md ├── example.py ├── layer_output.py ├── plot_design_space.py ├── plot_energy.py ├── plot_simple.py ├── plotter.py ├── reader.py ├── test_outputs │ └── best_su_best_tm │ │ ├── Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping │ │ ├── Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml │ │ ├── Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping │ │ ├── Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml │ │ ├── Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping │ │ ├── Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml │ │ ├── Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping │ │ └── Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml └── test_outputs2 │ └── best_su_best_tm │ ├── Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping │ ├── Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml │ ├── Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping │ ├── Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml │ ├── Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping │ ├── Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml │ ├── Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping │ └── Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml ├── requirements.txt ├── test ├── README.md ├── __init__.py ├── files │ ├── base │ │ ├── architecture.yaml │ │ ├── mapping.yaml │ │ ├── memory_pool.yaml │ │ ├── memory_pool_exploration.yaml │ │ └── settings.yaml │ └── plotting_en_ut │ │ ├── architecture.yaml │ │ ├── mapping.yaml │ │ ├── memory_pool.yaml │ │ ├── memory_pool_exploration.yaml │ │ └── settings.yaml ├── test_base.py ├── test_plotting_en_ut.py └── utils.py ├── top_module.py └── zigzag-conda-env.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/LICENSE -------------------------------------------------------------------------------- /NN_layers/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/AlexNet.py -------------------------------------------------------------------------------- /NN_layers/DarkNet19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/DarkNet19.py -------------------------------------------------------------------------------- /NN_layers/DenseNet121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/DenseNet121.py -------------------------------------------------------------------------------- /NN_layers/DenseNet169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/DenseNet169.py -------------------------------------------------------------------------------- /NN_layers/DenseNet201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/DenseNet201.py -------------------------------------------------------------------------------- /NN_layers/InceptionResnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/InceptionResnet_v2.py -------------------------------------------------------------------------------- /NN_layers/Inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/Inception_v3.py -------------------------------------------------------------------------------- /NN_layers/MobileNet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/MobileNet_v1.py -------------------------------------------------------------------------------- /NN_layers/MobileNet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/MobileNet_v2.py -------------------------------------------------------------------------------- /NN_layers/MobileNet_v3_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/MobileNet_v3_large.py -------------------------------------------------------------------------------- /NN_layers/MobileNet_v3_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/MobileNet_v3_small.py -------------------------------------------------------------------------------- /NN_layers/NASNet_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/NASNet_large.py -------------------------------------------------------------------------------- /NN_layers/NASNet_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/NASNet_small.py -------------------------------------------------------------------------------- /NN_layers/ResNeXt101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNeXt101.py -------------------------------------------------------------------------------- /NN_layers/ResNeXt50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNeXt50.py -------------------------------------------------------------------------------- /NN_layers/ResNet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet101.py -------------------------------------------------------------------------------- /NN_layers/ResNet101_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet101_v2.py -------------------------------------------------------------------------------- /NN_layers/ResNet152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet152.py -------------------------------------------------------------------------------- /NN_layers/ResNet152_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet152_v2.py -------------------------------------------------------------------------------- /NN_layers/ResNet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet18.py -------------------------------------------------------------------------------- /NN_layers/ResNet34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet34.py -------------------------------------------------------------------------------- /NN_layers/ResNet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet50.py -------------------------------------------------------------------------------- /NN_layers/ResNet50_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/ResNet50_v2.py -------------------------------------------------------------------------------- /NN_layers/SENet154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SENet154.py -------------------------------------------------------------------------------- /NN_layers/SEResNeXt101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNeXt101.py -------------------------------------------------------------------------------- /NN_layers/SEResNeXt50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNeXt50.py -------------------------------------------------------------------------------- /NN_layers/SEResNet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNet101.py -------------------------------------------------------------------------------- /NN_layers/SEResNet152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNet152.py -------------------------------------------------------------------------------- /NN_layers/SEResNet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNet18.py -------------------------------------------------------------------------------- /NN_layers/SEResNet34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNet34.py -------------------------------------------------------------------------------- /NN_layers/SEResNet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/SEResNet50.py -------------------------------------------------------------------------------- /NN_layers/VGG16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/VGG16.py -------------------------------------------------------------------------------- /NN_layers/VGG19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/VGG19.py -------------------------------------------------------------------------------- /NN_layers/Xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/NN_layers/Xception.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/README.md -------------------------------------------------------------------------------- /bsg_exh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/bsg_exh.py -------------------------------------------------------------------------------- /bsg_ite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/bsg_ite.py -------------------------------------------------------------------------------- /bsgutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/bsgutils.py -------------------------------------------------------------------------------- /classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/__init__.py -------------------------------------------------------------------------------- /classes/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/array.py -------------------------------------------------------------------------------- /classes/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/exceptions.py -------------------------------------------------------------------------------- /classes/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/layer.py -------------------------------------------------------------------------------- /classes/layer_rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/layer_rounding.py -------------------------------------------------------------------------------- /classes/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/loop.py -------------------------------------------------------------------------------- /classes/multi_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/multi_manager.py -------------------------------------------------------------------------------- /classes/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/order.py -------------------------------------------------------------------------------- /classes/spatial_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/spatial_loop.py -------------------------------------------------------------------------------- /classes/temporal_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/temporal_loop.py -------------------------------------------------------------------------------- /classes/utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/classes/utilization.py -------------------------------------------------------------------------------- /cost_model_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/cost_model_funcs.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/evaluate.py -------------------------------------------------------------------------------- /example_result_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/README.md -------------------------------------------------------------------------------- /example_result_file/console_info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/console_info/README.md -------------------------------------------------------------------------------- /example_result_file/example_mapping_file.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_mapping_file.mapping -------------------------------------------------------------------------------- /example_result_file/example_output_xml_file_info_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_output_xml_file_info_extraction.py -------------------------------------------------------------------------------- /example_result_file/example_result_file_complete_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_result_file_complete_version.pdf -------------------------------------------------------------------------------- /example_result_file/example_result_file_complete_version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_result_file_complete_version.xml -------------------------------------------------------------------------------- /example_result_file/example_result_file_concise_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_result_file_concise_version.pdf -------------------------------------------------------------------------------- /example_result_file/example_result_file_concise_version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/example_result_file_concise_version.xml -------------------------------------------------------------------------------- /example_result_file/result_file_documentation_complete_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/result_file_documentation_complete_version.pdf -------------------------------------------------------------------------------- /example_result_file/result_file_documentation_complete_version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/result_file_documentation_complete_version.xml -------------------------------------------------------------------------------- /example_result_file/result_file_documentation_concise_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/result_file_documentation_concise_version.pdf -------------------------------------------------------------------------------- /example_result_file/result_file_documentation_concise_version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/example_result_file/result_file_documentation_concise_version.xml -------------------------------------------------------------------------------- /im2col_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/im2col_funcs.py -------------------------------------------------------------------------------- /input_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/input_funcs.py -------------------------------------------------------------------------------- /inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/README.md -------------------------------------------------------------------------------- /inputs/architecture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/architecture.yaml -------------------------------------------------------------------------------- /inputs/mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/mapping.yaml -------------------------------------------------------------------------------- /inputs/memory_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/memory_pool.yaml -------------------------------------------------------------------------------- /inputs/memory_pool_exploration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/memory_pool_exploration.yaml -------------------------------------------------------------------------------- /inputs/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/inputs/settings.yaml -------------------------------------------------------------------------------- /loma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/loma.py -------------------------------------------------------------------------------- /msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/msg.py -------------------------------------------------------------------------------- /output_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/output_funcs.py -------------------------------------------------------------------------------- /plotting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/README.md -------------------------------------------------------------------------------- /plotting/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/example.py -------------------------------------------------------------------------------- /plotting/layer_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/layer_output.py -------------------------------------------------------------------------------- /plotting/plot_design_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/plot_design_space.py -------------------------------------------------------------------------------- /plotting/plot_energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/plot_energy.py -------------------------------------------------------------------------------- /plotting/plot_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/plot_simple.py -------------------------------------------------------------------------------- /plotting/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/plotter.py -------------------------------------------------------------------------------- /plotting/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/reader.py -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping -------------------------------------------------------------------------------- /plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.mapping -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU1_max_ut.yaml -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.mapping -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L4_M1_SU2_min_en.yaml -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.mapping -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_max_ut.yaml -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.mapping -------------------------------------------------------------------------------- /plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/plotting/test_outputs2/best_su_best_tm/Eyeriss_AlexNet_L5_M1_SU2_min_en.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/README.md -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/files/base/architecture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/base/architecture.yaml -------------------------------------------------------------------------------- /test/files/base/mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/base/mapping.yaml -------------------------------------------------------------------------------- /test/files/base/memory_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/base/memory_pool.yaml -------------------------------------------------------------------------------- /test/files/base/memory_pool_exploration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/base/memory_pool_exploration.yaml -------------------------------------------------------------------------------- /test/files/base/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/base/settings.yaml -------------------------------------------------------------------------------- /test/files/plotting_en_ut/architecture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/plotting_en_ut/architecture.yaml -------------------------------------------------------------------------------- /test/files/plotting_en_ut/mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/plotting_en_ut/mapping.yaml -------------------------------------------------------------------------------- /test/files/plotting_en_ut/memory_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/plotting_en_ut/memory_pool.yaml -------------------------------------------------------------------------------- /test/files/plotting_en_ut/memory_pool_exploration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/plotting_en_ut/memory_pool_exploration.yaml -------------------------------------------------------------------------------- /test/files/plotting_en_ut/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/files/plotting_en_ut/settings.yaml -------------------------------------------------------------------------------- /test/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/test_base.py -------------------------------------------------------------------------------- /test/test_plotting_en_ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/test_plotting_en_ut.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/test/utils.py -------------------------------------------------------------------------------- /top_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/top_module.py -------------------------------------------------------------------------------- /zigzag-conda-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigZag-Project/zigzag-v1/HEAD/zigzag-conda-env.yaml --------------------------------------------------------------------------------