Skip to content

Commit

Permalink
re-enable vulkan testing (#294)
Browse files Browse the repository at this point in the history
* re-enable vulkan testing

* Update master.cfg
  • Loading branch information
steven-johnson authored Nov 5, 2024
1 parent 1577485 commit a8ffe89
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -347,14 +347,11 @@ class BuilderType:
and self.os in ['windows', 'linux'])

def handles_vulkan(self):
# TODO: disabled temporarily pending fixes to the Vulkan runtime
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, HALIDE_RELEASE_17])
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 a8ffe89

Please sign in to comment.