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
-
Changes Of Note
ParamMap
has been removed entirely from the public API. All users ofParamMap
should migrate toCallable
instead.Halide::Parameter
has 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).TailStrategy
options 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_host
andcopy_to_device
so you can measure host<->device copy overheadHL_PROFILER_SORT
env varAnderson2021
autoscheduler..async()
scheduling directive.Target
now does some reality-checking that it doesn't contain obviously nonsensicalFeature
combinationsWhat'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) #7734profile
output 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-schedule
label in CMake by @steven-johnson in Remove deadauto-schedule
label in CMake #7818llvm::Type::getInt8PtrTy
usage. by @hokein in Remove the deprecated APIllvm::Type::getInt8PtrTy
usage. #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