halide 17.0.0#161602
Closed
BrewTestBot wants to merge 1 commit intoHomebrew:masterfrom
BrewTestBot:bump-halide-17.0.0
Closed
halide 17.0.0#161602BrewTestBot wants to merge 1 commit intoHomebrew:masterfrom BrewTestBot:bump-halide-17.0.0
BrewTestBot wants to merge 1 commit intoHomebrew:masterfrom
BrewTestBot:bump-halide-17.0.0
Conversation
Contributor
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. To keep this pull request open, add a |
Contributor
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. To keep this pull request open, add a |
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 bumpCreated with
brew bump-formula-pr.Details
release notes
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
cast<i32>(u32)overflow behavior by @rootjalex in Definecast<i32>(u32)overflow behavior halide/Halide#7769auto-schedulelabel in CMake by @steven-johnson in Remove deadauto-schedulelabel in CMake halide/Halide#7818llvm::Type::getInt8PtrTyusage. by @hokein in Remove the deprecated APIllvm::Type::getInt8PtrTyusage. halide/Halide#7937Full Changelog: halide/Halide@v16.0.0...v17.0.0