Halide v17.0.0 (draft) #8059
steven-johnson
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Changes Of Note
ParamMaphas been removed entirely from the public API. All users ofParamMapshould migrate toCallableinstead.Halide::Parameterhas been moved to the public Halide API (it was formerly "internal" and not intended for public use).Func::partition()and friends: Set the loop partition policy, which controls how/whether a loop is split into three loops (prologue/steady-state/epilogue). Loop partitioning can be useful to optimize boundary conditions (e.g. clamp_edge).Func::hoist_storage()and friends: allows a functions's storage to be moved to a given loop level. UnlikeFunc::store_at(), no optimizations are triggered (e.g. sliding window).TailStrategyoptions for for existing scheduling directives:ShiftInwardsAndBlend: Equivalent to ShiftInwards, but protects values that would be re-evaluated by loading the memory location that would be stored to, modifying only the elements not contained within the overlap, and then storing the blended result. Unlike ShiftInwards, this is valid to use in update definitions.RoundUpAndBlend: Equivalent to RoundUp, but protects values that would be written beyond the end by loading the memory location that would be stored to, modifying only the elements within the region being computed, and then storing the blended result. Unlike RoundUp, this is valid to use on non-outermost splits in update definitions.copy_to_hostandcopy_to_deviceso you can measure host<->device copy overheadHL_PROFILER_SORTenv varAnderson2021autoscheduler..async()scheduling directive.Targetnow does some reality-checking that it doesn't contain obviously nonsensicalFeaturecombinationsWhat's Changed
Error: Can't treat this multidimensional RDom as an Expr#7729) by @steven-johnson in Fix RDom usage in anderson2021_test_apps_autoscheduler (Fixes #7729) #7734profileoutput should be sorted #7638) by @steven-johnson in Allow optional sorting of profiler output via HL_PROFILER_SORT env var (Fixes #7638) #7639cast<i32>(u32)overflow behavior by @rootjalex in Definecast<i32>(u32)overflow behavior #7769auto-schedulelabel in CMake by @steven-johnson in Remove deadauto-schedulelabel in CMake #7818llvm::Type::getInt8PtrTyusage. by @hokein in Remove the deprecated APIllvm::Type::getInt8PtrTyusage. #7937Full Changelog: v16.0.0...v17.0.0
This discussion was created from the release Halide v17.0.0 (draft).
Beta Was this translation helpful? Give feedback.
All reactions