Skip to content

Commit

Permalink
Update master.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-johnson committed Dec 9, 2024
1 parent 719cf30 commit 9c32af9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,14 @@ class BuilderType:
and self.os in ['windows', 'linux'])

def handles_vulkan(self):
# TODO: https://github.com/halide/Halide/issues/8497
return False

# Stick with Linux on x86-64 for now. Others TBD.
return (self.arch == 'x86'
and self.bits == 64
and self.os == 'linux'
and self.halide_branch in [HALIDE_MAIN, HALIDE_RELEASE_18])
# return (self.arch == 'x86'
# and self.bits == 64
# and self.os == 'linux'
# and self.halide_branch in [HALIDE_MAIN, HALIDE_RELEASE_18])

def handles_webgpu(self):
# At the moment, the WebGPU team recommends the OSX versions of Dawn/Node
Expand Down

0 comments on commit 9c32af9

Please sign in to comment.