Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
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
cast<i32>(u32)
overflow behavior by @rootjalex in Definecast<i32>(u32)
overflow behavior halide/Halide#7769auto-schedule
label in CMake by @steven-johnson in Remove deadauto-schedule
label in CMake halide/Halide#7818llvm::Type::getInt8PtrTy
usage. by @hokein in Remove the deprecated APIllvm::Type::getInt8PtrTy
usage. halide/Halide#7937Full Changelog: halide/Halide@v16.0.0...v17.0.0