[Webkit-unassigned] [Bug 199895] New: [WHLSL] MTLComputePipelineState creation fails with "Compiler encountered an internal error." message

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 17 19:55:21 PDT 2019


https://bugs.webkit.org/show_bug.cgi?id=199895

            Bug ID: 199895
           Summary: [WHLSL] MTLComputePipelineState creation fails with
                    "Compiler encountered an internal error." message
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebGPU
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: justin_fan at apple.com

The following WHLSL code fails to compile:

  [numthreads(1, 1, 1)]
  compute void sort_0(device uint[] numbers : register(u0),
                      float3 localID        : SV_GroupThreadID) 
  {
      device uint[1] data;

      uint localIndex = uint(localID.x);

      data[localIndex] = numbers[0];
  }

It makes it all the way to MTLComputePipelineState creation; the Metal creation call then fails with the error "Compiler encountered an internal error."

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190718/bde6b2d9/attachment.html>


More information about the webkit-unassigned mailing list