Skip to content

Commit

Permalink
Add Halide 13 to config
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreinking committed Oct 30, 2021
1 parent 8391a66 commit 0a10710
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,15 @@ HALIDE_RELEASE_13 = 'release_13'
HALIDE_RELEASE_12 = 'release_12'
HALIDE_RELEASE_11 = 'release_11'

_HALIDE_RELEASES = [HALIDE_RELEASE_12, HALIDE_RELEASE_11]
_HALIDE_RELEASES = [
HALIDE_RELEASE_13,
HALIDE_RELEASE_12,
HALIDE_RELEASE_11,
]

# TODO: HALIDE_MAIN is currently being built against LLVM main (aka 14), but should switch to LLVM13 soon.
HALIDE_BRANCHES = {HALIDE_MAIN: VersionedBranch(ref='master', version=Version(13, 0, 0)),
HALIDE_RELEASE_13: VersionedBranch(ref='release/13.x', version=Version(13, 0, 0)),
HALIDE_RELEASE_12: VersionedBranch(ref='release/12.x', version=Version(12, 0, 1)),
HALIDE_RELEASE_11: VersionedBranch(ref='release/11.x', version=Version(11, 0, 1))}

Expand All @@ -105,6 +110,7 @@ HALIDE_BRANCHES = {HALIDE_MAIN: VersionedBranch(ref='master', version=Version(13
# TODO: HALIDE_MAIN needs to test against LLVM_MAIN and also LLVM_RELEASE_13 + LLVM_RELEASE_12, for now anyway
LLVM_FOR_HALIDE = {
HALIDE_MAIN: [LLVM_MAIN, LLVM_RELEASE_13, LLVM_RELEASE_12],
HALIDE_RELEASE_13: [LLVM_RELEASE_13],
HALIDE_RELEASE_12: [LLVM_RELEASE_12],
HALIDE_RELEASE_11: [LLVM_RELEASE_11],
}
Expand Down

0 comments on commit 0a10710

Please sign in to comment.