Ellie Hermaszewska
Ellie Hermaszewska
This will involve cross building it from aarch64 osx to x86_64 and the reverse on windows. LLVM cross builds without issues so I don't think this should be a major...
```slang //TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-cpu -output-using-type // CHECK: type: int32_t // CHECK-NEXT: 1 //TEST_INPUT:ubuffer(data=[0], stride=4):out,name=outputBuffer RWStructuredBuffer outputBuffer; int foo() { return 0; } int foo() { return 1; } [numthreads(1, 1, 1)] void...
I've bumped into a few times this problem: - build slang (SLANG_EMBED_STDLIB_SOURCE=1 SLANG_EMBED_STDLIB=0 (the defaults)) - Observe that the embedded stdlib source is built - ... - Make changes to...
consider this file ```slang // Single byte code points /* abc */ aaa; // Two byte code points /* αβγ */ bbb; // Single byte code points each followed by...
It, for example, fails if `gh` is in PATH rather than `gh.exe`. Shellcheck also flags a few dozen warnings.
**Description** Call `DispatchMesh` in an amplification shader with an empty struct, and observe that there's disagreement in the compiler as to the size of the struct (0 vs 4). **Steps...
**Is your bug specific to Fourmolu?** - [x] Yes, I've verified that Ormolu does not have this bug Ormolu doesn't have leading arrows **Did you try it on the web...
Fixes https://github.com/lamdu/hypertypes/issues/23
```haskell data Foo x h = Foo (h :# Foo x) makeHNodes ''Foo ``` ``` error: [GHC-83865] • Couldn't match kind ‘*’ with ‘AHyperType -> *’ Expected kind ‘HyperType’, but...