Yutaka Tamura

Results 4 comments of Yutaka Tamura

@apbryan ImportC does not work with dmd on Windows as it is. [Issue 24308](https://issues.dlang.org/show_bug.cgi?id=24308) - [ImportC] druntime\import\importc.h(134): fatal error C1034: sal.h: no include path set [Issue 24111](https://issues.dlang.org/show_bug.cgi?id=24111) - [ImportC] fatal...

@Geod24 I tried Github Actions. I only needed to set up the preferences for DMD, so I was able to pass with the following settings. ```yaml - name: '[Windows] Add...

Output expansion code by -mixin, ``` // expansion at source\dcompute\driver\ocl\device.d(173,5) @property Device.Type type() { import std.typecons; typeof(return) ret;clGetDeviceInfo(raw,AliasSeq!(4096)[0], ret.sizeof, &ret, null);return ret; } ``` from OpenCL API ```c cl_int clGetDeviceInfo(...

So correct device.d/queue.d enum base type, output become ``` Devices: [0] AMD Ryzen 7 8700G w/ Radeon 780M Graphics Intel(R) Corporation (2)CPU (3)cast(Properties)3 (7)cast(FPConfig)7 (2)readWrite (3)cast(ExecutionCapabilities)3 ``` by ```d enum...