From 0da35bf3619f7791c349c59658aad509178a40e7 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Mon, 24 Jun 2024 13:53:34 -0700 Subject: [PATCH] Re-Enable Vulkan Testing --- master/master.cfg | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/master/master.cfg b/master/master.cfg index f179034..c13e7d8 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -351,14 +351,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_17]) + return (self.arch == 'x86' + 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