Aziz
MModular
•Created by Martin Dudek on 5/26/2024 in #questions
Why are you using Mojo?
Scientific and high-performance computing (CPU + Accelerators).
23 replies
MModular
•Created by bunny on 5/16/2024 in #questions
are we fire yet
It could also be included here:
https://github.com/mojicians/awesome-mojo
10 replies
MModular
•Created by bunny on 5/16/2024 in #questions
are we fire yet
We could also create each major x project with an explanation of its domain. Then, we could leave it to the community to manage and contribute. Many people are too busy to start and maintain a new major x project but are happy to push small patches that fit a well-written API.
10 replies
MModular
•Created by Martin Dudek on 5/16/2024 in #questions
Python integration and performance
In the code that runs in 15.87 sec, why do you have
dict2
instead of dict
as in the initial Python version? It is also not initialized as10 replies
MModular
•Created by Arvin_David on 3/28/2024 in #questions
How to Create a Multi-Type List in Mojo?
It doesn’t not compile with the mojo Playground:
https://docs.modular.com/mojo/playground
25 replies
MModular
•Created by Arvin_David on 3/28/2024 in #questions
How to Create a Multi-Type List in Mojo?
25 replies
MModular
•Created by Arvin_David on 3/28/2024 in #questions
How to Create a Multi-Type List in Mojo?
You can try Tuple:
‘
def main():
var c = Tuple[Int, StringLiteral, Float64](1,"x", 2.2)
print(c.get1,StringLiteral)
‘
25 replies