martinvuyk

Results 22 comments of martinvuyk

As long as the hardware vendors add MLIR interfaces it will be compatible in the future [(Mojo FAQ)](https://docs.modular.com/mojo/faq#who-writes-the-software-to-add-more-hardware-support-for-mojo). Of course it still needs work. You can directly [import and call...

[yes](https://github.com/intel/mlir-extensions)

It most probably is in their plans to add GPU access. But I don't know what you mean by soon.. It's a 1 year old language after all

use the [docker image](https://github.com/modularml/mojo/tree/main/examples/docker) edit: not working in windows srry

had this just now in nightly `2024.5.2205` ```text FAIL: Mojo Standard Library :: builtin/test_reversed.mojo (29 of 97) ******************** TEST 'Mojo Standard Library :: builtin/test_reversed.mojo' FAILED ******************** Exit Code: 133 Command...

> Do you have a consistent repro or just from a run on CI? [just from a run on CI](https://github.com/modularml/mojo/actions/runs/9198661857/job/25301854461)

I tried using it now that you mentioned it (num100: Int8) ``` error: 'pop.bitcast' op operand type '!pop.scalar' and result type '!pop.scalar' are cast incompatible var digits = bitcast[DType.int64](num100) !pop.scalar...

Sadly I have an input which is a List[Int8] returned by file.read_bytes so I have no concatenation (i.e. type SIMD[DType.int8, 8]) (or I just don't know how to build the...

There is no DTypePointer constructor with that signature. And file.read_bytes returns a signed integer (no idea why not an UInt8) ``` error: no matching function in initialization var p =...

Thanks a lot that one helped a bunch. I was just reading the docs and trying stuff out, didn't think to go straight to the code. But now that I...