You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 646 B

123456789
  1. # The main purpose of this folder is to adjust the compilation order of megdnn to improve the overall compilation time.If you add a new opr and find that it significantly slows down the compilation time, you can manually add the opr to the front of priority_compile_opr.txt. If you add more opr, you can also run: python3 sort_compile_time_map.py. However, this operation will be very time-consuming because it is a single-threaded compilation.
  2. - priority_compile_opr.txt: Compile order sorted by compile time
  3. - sort_compile_time_map.py: Generate the compile script for the above two files
  4. ## Usage
  5. ```bash
  6. python3 sort_compile_time_map.py
  7. ```