Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Programming

Does the New 'Mojo' Programming Language Offer a Faster Superset of Python? (infoworld.com) 71

InfoWorld explores how the new Mojo program language "resembles Python, how it's different, and what it has to offer." The newly unveiled Mojo language is being promoted as the best of multiple worlds: the ease of use and clear syntax of Python, with the speed and memory safety of Rust. Those are bold claims, and since Mojo is still in the very early stages of development, it will be some time before users can see for themselves how the language lives up to them. But Mojo's originator — a company named Modular — has provided early access [through a limited-enrollment preview program] to an online playground: a Jupyter Notebook environment where users can run Mojo code and learn about the language's features and behavior...

Mojo can be described as a "superset" of Python. Programs written in Python are valid Mojo programs, although some Python behaviors haven't yet been implemented... It's also possible to use the actual Python runtime for working with existing Python modules, although there is a performance cost. When Mojo introduces new syntax, it's for system-level programming features, chiefly manual memory handling. In other words, you can write Python code (or something almost exactly like it) for casual use cases, then use Mojo for more advanced, performance-intensive programming scenarios... Mojo's other big difference from Python is that Mojo's not interpreted through a runtime, as Python is. Mojo is compiled ahead-of-time to machine-native code, using the LLVM toolchain. To that end, the best performance comes from using features specific to Mojo. Python features are likely to come at the cost of emulating Python's dynamic behaviors, which are inherently slow — or again, by just using the Python runtime.

Many of Mojo's native language features do one of two things. They're either entirely new features not found in Python at all, or expansions of a Python feature that make it more performant, although with less of Python's dynamism.

For example, Mojo has its own fn keyword which defines a function with explicitly-typed and immutable-by-default arguments, and its own struct keyword which is less like a Python class and more like its C/C++ and Rust counterpart "with fixed layouts determined at compile time but optimized for machine-native speed."

But "At a glance, the code closely resembles Python. Even the new Mojo-specific keywords integrate well with existing Python syntax, so you can run your eye down the code and get a general idea of what's happening." And then there's the speed... The notebook demos also give examples of how Mojo code can be accelerated via parallelism, vectorizing, and "tiling" (increasing cache locality for operations). One of the demos, a 128x128 matrix multiplication demo, yielded a claimed 17-times speedup over Python (using the Python runtime in the Mojo playground) by simply running as-is with no special modification. Mojo added 1866x speedup by adding type annotations, 8500x speedup by adding vectorized operations, and 15000x speedup by adding parallelization.
This discussion has been archived. No new comments can be posted.

Does the New 'Mojo' Programming Language Offer a Faster Superset of Python?

Comments Filter:
  • Lost it (Score:4, Funny)

    by backslashdot ( 95548 ) on Sunday June 11, 2023 @04:55PM (#63593750)

    I downloaded a copy of it and now I cannot find it.

  • by jythie ( 914043 ) on Sunday June 11, 2023 @04:58PM (#63593762)
    Seem to be a lot that really need a hobby,.. or at least need to differentiate between hobby and professional work.. This really looks like another example of where a library would have done the job (esp in python), but a new language with your name associated with it is a lot more fun. Which to be fair, I am all for people doing stuff because its fun.. but you gotta acknowledge it otherwise you just end up with projects that do something in a more complicated les compatible way for no good technical reason.
  • by greytree ( 7124971 ) on Sunday June 11, 2023 @05:00PM (#63593764)
    Does Mojo sponsor Slashdut?
  • it's popularity and wide use has many MBAs lying awake at night figuring out how they can monetize it.

    Expect a lot of companies to be releasing press releases to figure out what that way might be.

  • by Anonymous Coward

    Because only some dinosaurus from the past centurt develops a language which applies restrictions based on his government provided 40 character CRT at the expense of the Dutch government because he apparently was fine with wasting tax payers money on his side projects at his department.

  • by david.emery ( 127135 ) on Sunday June 11, 2023 @05:51PM (#63593828)

    Mojo can be described as a "superset" of Python. Programs written in Python are valid Mojo programs, although some Python behaviors haven't yet been implemented...
    Life is easy when you can choose to not do the hard parts.... https://en.wikipedia.org/wiki/... [wikipedia.org]

    • Re: (Score:3, Insightful)

      by gweihir ( 88907 )

      Indeed. At the moment this thing is a _subset_ of Python and you can bet that they avoided the hard parts as far as possible.

  • by MtHuurne ( 602934 ) on Sunday June 11, 2023 @06:19PM (#63593862) Homepage

    There is an in-depth interview with Chris Lattner about Mojo on the Lex Fridman podcast [youtube.com].

    My impression is that the first adopters would not be Python application programmers, but the people maintaining math-heavy libraries such as numpy, pandas and pytorch. Those libraries are currently mixes of Python and C++ and with Mojo it would be possible to write all of it in a single language without losing performance and perhaps even gaining some due to autotuning and wider accelerator support.

    Of course, that all depends on Mojo delivering on its planned features before their funding runs out. The plans sound realistic enough to not dismiss them, but far from easy.

    • You still give clicks and attention to Lex, that Joe Rogan loving mouthpiece of disinformation?
      • Is there some drama that I missed? YouTube's algorithm suggested this interview, I watched it and I found it informative, that's all there is to it.

        • Lex is fine. He's just not.... discriminate.... about who he interviews leading to a few situations where I'm left to question whether he's a guy whos bookmart but not so wise.

      • Anyone who uses the term "disinformation" unironically deserves to be ignored forever.

  • by peterww ( 6558522 ) on Sunday June 11, 2023 @06:39PM (#63593900)

    For systems programming I would much prefer a new Bash. Bash is the best programming language - because it's not one.

    Bash is great because programmers hate it and users can get shit done with it. Rather than sitting around arguing over some computer science bullshit, Bash just lets a power user string together external programs with some basic logic and useful functionality.

    Bash's major downside is the syntax isn't intuitive, so amateurs tend to use it wrong. It also could stand to build in the tools most people use frequently with it, like those that come with BusyBox. And there are some commonly-used functions which there is no portable solution for, that should probably just become a built-in: realpath, JSON/YAML support, Curl, etc.

    If somebody could take Bash, merge it with BusyBox and Curl, and add some missing features, I would use that for virtually all programs I write.

    • by JustAnotherOldGuy ( 4145623 ) on Sunday June 11, 2023 @07:31PM (#63593974) Journal

      But first we'd need to slap a big, bloated GUI on it that was filled with many unique and interesting bugs.

      Then 241 hobbyists could fork it endlessly with no coordination or plan so they could all wreck it together.

    • ... I think you're thinking or PERL
    • by Plugh ( 27537 ) on Sunday June 11, 2023 @10:59PM (#63594168) Homepage
      Sounds like you want Perl
    • If somebody could take Bash, merge it with BusyBox and Curl, and add some missing features, I would use that for virtually all programs I write.
      Are you sure you have any clue what you are talking about?

      The mods certainly have no clue.

    • Bash is the best programming language - because it's not one.

      As someone who has programmed bash scripts for decades, I strongly disagree. Bash is terrible to do almost anything in, once you cross the threshold past the most simple of programs. There are so many cases of "How do I do this complicated thing in Bash" that are answered with "You can do it this way, but it's the ugliest and unsafest thing you'll ever see", that it makes me want to reach out for almost any other language besides Bash.

      Bash also

      • unsafe? is bash going to cut off your finger?

        hugely insecure? because JavaScript and Python is secure by default? remind me again how security works - you just pick the right programming language and all security holes go away?

        • Well, I'd guess that 98% of Bash scripts execute commands on some system. Since Bash lacks elegant ways of partitioning arguments to functions and function output, script authors typically rely on hacky workarounds that, combined with inherent problems in Bash parameter expansion, often result in many Bash scripts being prone to exploit, such as doing malicious things when specially-crafted filenames appear in the local filesystem, etc.

          • See, this is why programmers are completely out of their minds insane. They think programs need to put on tuxedos and ball gowns. Your claims about Bash scripts being insecure are total bullshit, by the way. Many *all kinds* of programs are prone to exploit. If you think JavaScript and C are some paradigm of secure computing, think again, bucko.

            • Now you're just spewing uneducated vitriol.

              Let's ask some of the smartest people in America, the students at MIT, how to make Bash scripts secure:

              "Writing shell scripts leaves a lot of room to make mistakes, in ways that will cause your scripts to break on certain input, or (if some input is untrusted) open up security vulnerabilities. Here are some tips on how to make your shell scripts safer. Don't: The simplest step is to avoid using shell at all. Many higher-level languages are both easier to write th

              • I've been programming for two decades, and doing security research just as long. Programming languages are not secure. They have to be made secure. For *any* programming language, if you use the language wrong, you create insecure code. No language will prevent you from footgunning your own code. You do have to actually use your brain.

                "subvert programmer expectations", aka:

                "some moron who refused to read the documentation to learn the actual syntax, and instead blundered into trying to write a script with z

                • The point is that Bash makes it EXTREMELY easy to write scripts that have negative side effects that are not obvious, with many of those side effects leading to filesystem and operating system-level vulnerabilities. No other programming language makes destroying your system so easy.

                  I'm sorry, but if you're telling me that it's reasonable to expect a programmer to get a Ph.D. to understand how file system globbing injected into variable expansion could result in complete system compromise, just to be able t

                  • And a sharp knife makes it easier to cut yourself. So you shouldn't use sharp knives if you don't know how to handle them properly. Does that mean you should not use sharp knives? Professional chefs tend to prefer them. You tell me, are sharp knives terrible? Should we all prepare our meals with butter knives because they lead to fewer cuts?

                    • I certainly wouldn't want kids to play with sharp knives, just because some adults are proficient with them.

    • Bash is awful for anything serious. It's great for a quick bit of glue or whatever, but for anything 'big' you quickly get into a mess of unreable, untestable crap.

      I'd love to see a slight increment on it though - as you say, something with some modern workflows built into it, and with some real programming capabilities (eg. unit tests), and preferably something to avoid the "rm -rf ${UNDEFINED_VARIABLE}/*" type problems that Bash seems to attract. But by the time you've done all that, you've probably got a

    • by steveha ( 103154 )

      Bash is great because programmers hate it and users can get shit done with it. Rather than sitting around arguing over some computer science bullshit, Bash just lets a power user string together external programs with some basic logic and useful functionality.

      I agree, this is the best part of Bash.

      However, in my experience, if a Bash program grows large enough, it can become a maintenance hassle. If you are doing a lot of processing to figure out what work to do, Bash isn't the best.

      And IMHO the worst thin

    • As long as you know what it's good for I agree. I've seen some high performance code that was just a shell pipeline. There may have been a lot of start-up options and stuff, the script could even be somewhat complex and more than a one-liner as the user is permitted to configure it; but when you get to the part where it's scanning and processing gigs of data with a hand full of programs written in C, that's where it all comes down to one line and *NIX is optimized to do pipes very fast, and it just works

  • Nope (Score:4, Insightful)

    by gweihir ( 88907 ) on Sunday June 11, 2023 @07:20PM (#63593946)

    Next question.

    Seriously, it is not about programming languages. These are entirely a side-show today. It is about coder competence. And that sucks in way too many cases. Programming languages will not fix that because they cannot. If they could, that would have happened a while ago. It did not.

    The whole "Mojo" (what a pretentious name...) thing is unfinished and currently only a _subset_ of Python works. The benchmarks given are bogus and irrelevant. Sure, it is easy to be faster than Python. Python is not for heavy lifting and that is entirely fine. You get a lot of flexibility in exchange for that. But that also means performance is _not_ a reason to replace Python. If you need heavy lifting with Python, put the core code for that into a C extension module. It is not hard to do for anybody competent. (But see above under "coder competence").

    Also, license? "We expect that Mojo will be open-sourced" does not cut it at all. This looks like yet another embrace-extend-extinguish attempt against something that works well.

    • Re:Nope (Score:5, Interesting)

      by Jeremi ( 14640 ) on Sunday June 11, 2023 @10:45PM (#63594148) Homepage

      Seriously, it is not about programming languages. These are entirely a side-show today. It is about coder competence. And that sucks in way too many cases.

      If you have a solution for making coders more competent, you can propose it; otherwise you are just pounding the table.

      Meanwhile, what we can do is provide coders with tools that make it easier for them to write "good" code and/or harder for them to write "bad" code. There's a reason we use the languages we use today rather than writing everything in assembly language or CPU opcodes. Language matters.

      • by gweihir ( 88907 )

        Seriously, it is not about programming languages. These are entirely a side-show today. It is about coder competence. And that sucks in way too many cases.

        If you have a solution for making coders more competent, you can propose it; otherwise you are just pounding the table.

        I have done that here often enough. I do not need to repeat it every time I comment on the abysmal skills of the average coder. But it is really simple: Education, certification, liability. Like any engineer or qualified technician in an _established_ tech discipline has. The current amateur crap-show has to stop. FOSS needs some special approaches, but even there most people that write good code can directly prove on-topic qualifications.

        Meanwhile, what we can do is provide coders with tools that make it easier for them to write "good" code and/or harder for them to write "bad" code. There's a reason we use the languages we use today rather than writing everything in assembly language or CPU opcodes. Language matters.

        Not really. All you do is shift the mistakes to areas where they are

        • by Jeremi ( 14640 )

          Assembler code is not inherently more buggy than other code.

          Sure it is. Writing assembly is like writing C but without any compile-time type checking. Imagine writing a C or C++ program using only (int) and (void *) as types, rather than defining domain-specific classes and structs to help enforce correct behavior. It's technically possible, but your chances of introducing runtime bugs are much greater because the assembler can't flag your high-level mistakes for you.

    • Seriously, it is not about programming languages.

      Seriously - it can be.

      That's because sometimes the primitives and things a language optimizes for, and incredibly important for some specific tasks.

      For trying to to write good ML code, Mojo adds unique capabilities to Mojo to let you use Python for things you'd have to drop down to C++ or C for.

      Different languages are good tools for different jobs.

    • Along that curve, but one of the biggest downsides of new languages is the toolchain needs to be done for a whole other language.

      Things like security tools, 'devops', IDEs, various libraries...

      All these things help with respect to 'coder competence' and getting the job done. Half the time a new language is released, I think the 'new stuff' could probably have been done by a library or god forbid a code generator or something. They may not be as ideal, but then you keep the rest of the tool chain in tact.

      The

      • by gweihir ( 88907 )

        Something like the jump to VM languages (C#, Java...). But those are rare.

        Indeed. It is a major move and that means there must be a set of really convincing reasons. Typically there are not.

  • Julia (Score:3, Informative)

    by Blackeneth ( 210087 ) on Sunday June 11, 2023 @11:50PM (#63594274)

    Julia is a high-level programming language that offers several distinct advantages. First and foremost, Julia combines the ease of use and readability of traditional programming languages with the performance of low-level languages like C or Fortran. It achieves this by utilizing just-in-time (JIT) compilation, enabling fast execution speeds. Additionally, Julia's extensive mathematical and scientific computing capabilities make it an excellent choice for data analysis, modeling, and simulation tasks. Its rich ecosystem of packages and libraries provides a wide range of tools for various domains, from machine learning and optimization to signal processing and visualization. Furthermore, Julia's ability to seamlessly integrate with existing code written in other languages enhances its flexibility and interoperability. Overall, the combination of performance, versatility, and ease of use makes Julia a compelling choice for scientific computing, and data-driven applications, and general programming.

    • Julia is much more ambitious in terms of what it was trying to do in order to address scientific computing. That's a blessing and a curse. but ultimately one that I have more confidence in than carrying Python's legacy.

  • I have no doubt that Mojo is a wonderful language. However we are nearing the end of the era of human written computer programs and the start of the age of AI written programs. In the next decade the majority of software will be written by machines making manually written programs, no matter how elegant, superfluous. There is historical parallel discussed in the software engineering classic "The Mythical Man Month". In the 1960's IBM developed the world's most powerful and advanced overly loader - a progra
    • However we are nearing the end of the era of human written computer programs and the start of the age of AI written programs.
      As long as people have to write programs that never have been written before: unlikely. Extremely unlikely.

      I work on a toy language. I like to have it to import something like - slightly improved - Java properties files. It takes much more time and effort to tell an AI what I want then to just program it.

      AI might help in business programming where e.g. a DB or many DBs already exist,

    • However we are nearing the end of the era of human written computer programs and the start of the age of AI written programs. In the next decade the majority of software will be written by machines making manually written programs, no matter how elegant, superfluous.

      That's precisely what they said about COBOL.

  • Modern programming languages all have enough capabilities to accomplish the tasks those languages are suited for. But the language itself isn't what's important, it's the community around the language. If a language is really good at one thing or another, that's great! But without a community of developers to provide tips, examples, and improvements, it's nothing.

    • Good languages tend to accumulate communities. If it turns out to be useful, it will have a community sooner than you think.

      • That is a very naïve view. Great ideas, great inventions, great languages--none of these are enough to lead to success. The idea, invention, language is the easy part. The hard part is selling it.

        Apple was not the first to invent a phone that could play music and browse the web. They were just the first to successfully market it. History is full of great ideas--and programming languages--that never went anywhere.

    • Some day we'll get even further, and a community for the *language* won't be necessary. Instead, the community will be focused on the problems and the language will be in the background. Language innovation will slow to a trickle, and that'll be a good thing. It will be like music notation. There is a lot of discussion about music, but notation is mostly standardized. I say "mostly" because a few interesting things still come along, like a number of years ago I saw a notation for turntable scratching!

      • I like your thinking. It's true that in many ways, language plays too large a role in the software development process. It's also true that over time, language has become less important. Most modern languages have converged around basic concepts, it has become common to expect that any language will have built-in support for things like date arithmetic, threads, event handling, and so on. Once upon a time, you had to build these things yourself.

        On the other hand, I don't think language can ever go away comp

  • There is no reason to bother until they -- perhaps -- decide to open source this. Their current strategy of not allowing download, not opening the source code is just silly and their excuse for doing this is even more silly.
    Let's wait and see if the will become a proper, downloadable, open source software. Until then, I am not interested.

  • ...So if you want fast use a fast language ... not Python, and not Mojo ...

  • > Does the New 'Mojo' Programming Language Offer a Faster Superset of Python?

    Betteridge has you covered: no.

  • Julia is already very fast, competitive with C++. Julia can call Python and python libraries and has vibrant libraries in HPC and machine learning. It's syntax is way cleaner than python, especially for linear algebra. Moreover Julia is ready now. I'll think I'll stick to Julia if I can.

Dynamically binding, you realize the magic. Statically binding, you see only the hierarchy.

Working...