Skip to content

Commit

Permalink
Disable vulkan again
Browse files Browse the repository at this point in the history
  • Loading branch information
abadams committed Jun 19, 2024
1 parent 075602b commit 65fdd2f
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 @@ -351,11 +351,14 @@ class BuilderType:
and self.os in ['windows', 'linux'])

def handles_vulkan(self):
# TODO: disabled temporarily pending fixes to the Vulkan runtime
return False

Check warning on line 356 in master/master.cfg

View workflow job for this annotation

GitHub Actions / flake8

W293 blank line contains whitespace
# 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_17])
#return (self.arch == 'x86'

Check failure on line 358 in master/master.cfg

View workflow job for this annotation

GitHub Actions / flake8

E265 block comment should start with '# '
# and self.bits == 64
# and self.os == 'linux'
# and self.halide_branch in [HALIDE_MAIN, HALIDE_RELEASE_17])

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

0 comments on commit 65fdd2f

Please sign in to comment.