Serg Gini
Serg Gini
MModular
Created by Noam Y on 12/10/2024 in #questions
When can we expect gpu kernels in mojo?
Implement in Jax and then it probably will be easier to migrate to Mojo
5 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
1brc was interesting yes. I think the problem itself is quite uncommon.. like usually you have thousands smaller CSV/TSV/Json files.. not one big though
67 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
for sure nobody should do any significant decisions only on this one microbench)
67 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
for some optimizations it is possible, for others it is harder..
67 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
the idea of the bench to let compiler do the magic, not the dev
67 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
of course the problem is too simple and constraints from the author are kinda strange.. So I think, it is "bad" to compare absolute values in this bench But it is "good" to investigate your and other language design details based on this bench that took some attention
67 replies
MModular
Created by Tyler Hillery on 12/4/2024 in #questions
1 Billion nested loop iterations Mojo Implementation - seeking feedback
this is different algorithm
67 replies
MModular
Created by Kevin Thomas on 6/20/2024 in #community-showcase
mojonet
Isn't Mojo's bindings should be to C++ libtorch library? for the speed..
14 replies
MModular
Created by Jack Clayton on 5/10/2024 in #community-showcase
Basalt: ML Framework
No PyTorch is a first-class bindings to libtorch, which is C++ library. And it is kinda optimised, but bloated and not very great quality of code... That's why there are some other solutions that outperform it
33 replies
MModular
Created by Frank Saez on 6/5/2024 in #questions
Question about iterating a list of strings
for 'dereference' or something like that. I've seen it in the other code, but still don't understand this model yet by myself)
14 replies
MModular
Created by Frank Saez on 6/5/2024 in #questions
Question about iterating a list of strings
You need to use print(x[])
14 replies
MModular
Created by MRiabov on 6/3/2024 in #questions
How to iterate through an array/list?
lines looks like Tuple, not like List. Why not List((Int, Int),...) ?
7 replies
MModular
Created by Martin Dudek on 5/26/2024 in #questions
Why are you using Mojo?
Go has nice geospatial libs) and two-language problem is Julia’s trademark 😄
23 replies
MModular
Created by Darkmatter on 5/19/2024 in #questions
JSON Parser?
Python interop for reading json worked for me.. Maybe I had quite simple json structure
2 replies