Stanislav Ch. Nikolov
Stanislav Ch. Nikolov
Hi @ggetz, it looks Kimmo Kinnunen on the [webkit forum thread](https://bugs.webkit.org/show_bug.cgi?id=237434) found a workaround for this problem: ``` This can be worked around by adding invariant gl_Position; in your shader....
To help a little bit with investigating: ```zig const std = @import("std"); const Encho = enum { A, B }; pub fn main() !void { const T = std.mem.zeroes([123456]Encho); //...
In summary: ```sh $ curl https://ziglang.org/builds/zig-macos-aarch64-0.11.0-dev.3393+34d44e0c1.tar.xz -O $ tar -xf ./zig-macos-aarch64-0.11.0-dev.3393+34d44e0c1.tar.xz $ cp /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/lib/libSystem.tbd zig-macos-aarch64-0.11.0-dev.3393+34d44e0c1/lib/libc/darwin/libSystem.14.tbd $ alias zig='./zig-macos-aarch64-0.11.0-dev.3393+34d44e0c1/zig' ``` Then `zig build run` works. Maybe augmenting $PATH would be better.
See the upsample_nearest function the [Stable Diffusion example](https://github.com/ml-explore/mlx-examples/blob/main/stable_diffusion/stable_diffusion/unet.py#L126): ```python def upsample_nearest(x, scale: int = 2): B, H, W, C = x.shape x = mx.broadcast_to(x[:, :, None, :, None, :], (B,...
Some people are able to push 420h/s with one cpu, although with a different miner. I expect that 700+h/s with xmr-stak-cpu with 2 CPUs should be possible.
Mine came a few hours ago and on arch linux with no gui runs at 480h/s.
230 W with 6 sticks of RAM and a hard drive. Remove as much unused hardware as possible and maybe you can get it below 210. On 22 Sep 2017...
System as in operating system? Arch linux
Check the bios for disables features, start the miner with force-AES On 20 Dec 2017 4:10 am, "lotrjoel" wrote: Hi I'm using an IBM server with 2 X5650's, for some...
Install the xerces-c library manually (for example using brew) ```sh brew install xerces-c ``` The install pye57 telling the C compiler (clang on my machine) where to find the header...