halide 19.0.0__cp310-cp310-win_amd64.whl → 21.0.0__cp310-cp310-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. halide/__init__.py +10 -6
  2. halide/_generator_helpers.py +190 -127
  3. halide/bin/Halide.dll +0 -0
  4. halide/bin/adams2019_retrain_cost_model.exe +0 -0
  5. halide/bin/adams2019_weightsdir_to_weightsfile.exe +0 -0
  6. halide/bin/anderson2021_retrain_cost_model.exe +0 -0
  7. halide/bin/anderson2021_weightsdir_to_weightsfile.exe +0 -0
  8. halide/bin/featurization_to_sample.exe +0 -0
  9. halide/bin/gengen.exe +0 -0
  10. halide/bin/get_host_target.exe +0 -0
  11. halide/halide_.cp310-win_amd64.pyd +0 -0
  12. halide/imageio.py +1 -1
  13. halide/include/Halide.h +1775 -1477
  14. halide/include/HalideBuffer.h +13 -13
  15. halide/include/HalidePyTorchCudaHelpers.h +1 -1
  16. halide/include/HalideRuntime.h +35 -16
  17. halide/lib/Halide.lib +0 -0
  18. halide/lib/HalidePyStubs.lib +0 -0
  19. halide/lib/Halide_GenGen.lib +0 -0
  20. halide/lib/autoschedule_adams2019.dll +0 -0
  21. halide/lib/autoschedule_anderson2021.dll +0 -0
  22. halide/lib/autoschedule_li2018.dll +0 -0
  23. halide/lib/autoschedule_mullapudi2016.dll +0 -0
  24. halide/lib/cmake/Halide/FindHalide_LLVM.cmake +44 -15
  25. halide/lib/cmake/Halide/FindV8.cmake +0 -12
  26. halide/lib/cmake/Halide/Halide-shared-targets.cmake +1 -1
  27. halide/lib/cmake/Halide/HalideConfig.cmake +1 -1
  28. halide/lib/cmake/Halide/HalideConfigVersion.cmake +3 -3
  29. halide/lib/cmake/HalideHelpers/Halide-Interfaces.cmake +1 -0
  30. halide/lib/cmake/HalideHelpers/HalideGeneratorHelpers.cmake +31 -9
  31. halide/lib/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake +3 -3
  32. halide/lib/cmake/Halide_Python/Halide_PythonConfigVersion.cmake +3 -3
  33. halide/share/doc/Halide/README.md +7 -6
  34. halide/share/doc/Halide/doc/BuildingHalideWithCMake.md +78 -6
  35. halide/share/doc/Halide/doc/HalideCMakePackage.md +9 -2
  36. halide/share/doc/Halide/doc/Python.md +19 -4
  37. halide/share/doc/Halide/doc/RunGen.md +1 -1
  38. {halide-19.0.0.data → halide-21.0.0.data}/data/share/cmake/Halide/HalideConfig.cmake +4 -1
  39. {halide-19.0.0.data → halide-21.0.0.data}/data/share/cmake/Halide/HalideConfigVersion.cmake +3 -3
  40. {halide-19.0.0.data → halide-21.0.0.data}/data/share/cmake/HalideHelpers/HalideHelpersConfig.cmake +4 -1
  41. {halide-19.0.0.data → halide-21.0.0.data}/data/share/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake +3 -3
  42. halide-21.0.0.dist-info/METADATA +302 -0
  43. {halide-19.0.0.dist-info → halide-21.0.0.dist-info}/RECORD +45 -45
  44. {halide-19.0.0.dist-info → halide-21.0.0.dist-info}/WHEEL +1 -1
  45. halide-19.0.0.dist-info/METADATA +0 -301
  46. {halide-19.0.0.dist-info → halide-21.0.0.dist-info}/licenses/LICENSE.txt +0 -0
halide/bin/Halide.dll CHANGED
Binary file
Binary file
Binary file
halide/bin/gengen.exe CHANGED
Binary file
Binary file
Binary file
halide/imageio.py CHANGED
@@ -1,6 +1,6 @@
1
1
  try:
2
2
  import imageio.v2 as imageio
3
- except:
3
+ except ImportError:
4
4
  import imageio
5
5
  import numpy as np
6
6