Giter Club home page Giter Club logo

Comments (19)

JSMonk avatar JSMonk commented on August 24, 2024 7

I'm working hard to finish the MVP this year, but I'm not sure.

from hegel.

JSMonk avatar JSMonk commented on August 24, 2024 4

Hi @hazelTheParrot. Sure, I started working on it, and hope (not sure about the October), but we will present MVP soon, with a pretty cool news.

from hegel.

JSMonk avatar JSMonk commented on August 24, 2024 3

No, currently it is in separate Repo because it will be rewritten from scratch.

from hegel.

trusktr avatar trusktr commented on August 24, 2024 2

Idea: make it compilable to WebAssembly! Is there an opportunity to work with @dcodeIO from AssemblyScript perhaps? Maybe Hegel can generate ASTs (in a way that doesn't have the downside of TypeScript transforms), and AssemblyScript can use them to map to its Wasm output?

@dcodeIO Do you have a list of all the downsides you experienced when trying to make AssemblyScript on TS transforms?

from hegel.

JSMonk avatar JSMonk commented on August 24, 2024 2

Hi @texastoland,
I planed to implement the MVP in September/October of this year.

from hegel.

JSMonk avatar JSMonk commented on August 24, 2024 1

It will be a superset of the first version, so it will have backward compatibility.

from hegel.

CrazyPython avatar CrazyPython commented on August 24, 2024 1

Thanks for the links.

WASM and JS use the same optimizing backend. You can manipulate both to get similar results.

Also as I mentioned some runtimes (builtins) methods / classes like string concatenation you can't speedup at all.

My guess is this JS code is just as fast. Benchmark this on V8 and/or JSC, two compilers that can inline and interleave generators into other code.

function toList(arr) {
  for (let i = 0; i < arr.length; i++) {
    yield* arr[i];
  }
}

Either way, if you want a fast compiler, it comes from writing a character-by-character streaming compiler and avoiding IRs and complex data structures whenever possible. You can do that in any language.

from hegel.

texastoland avatar texastoland commented on August 24, 2024 1

@JSMonk started working on Kotlin (congrats!) so probably delayed

from hegel.

trusktr avatar trusktr commented on August 24, 2024 1

👀🍿

from hegel.

CrazyPython avatar CrazyPython commented on August 24, 2024

For projects, how compatible is it with v1?

from hegel.

CrazyPython avatar CrazyPython commented on August 24, 2024

WebAssembly is not magic performance pixie dust.

from hegel.

MaxGraey avatar MaxGraey commented on August 24, 2024

@CrazyPython It very depends on task. See another examples:
https://github.com/acutmore/type-off
https://twitter.com/matthewcp/status/1390013392950284291
https://github.com/MaxGraey/as-string-sink#benchmark-results

btw issue with growing array already fixed

from hegel.

CrazyPython avatar CrazyPython commented on August 24, 2024

AssemblyScript influences you to write faster code, but you can write the same fast code in JavaScript, if you know what to avoid.

from hegel.

MaxGraey avatar MaxGraey commented on August 24, 2024

but you can write the same fast code in JavaScript, if you know what to avoid.

That's not really true. Ofc you could do something like this in theory. Or you could use d8/chrome with --trace-deopt to figure outing de-optimizations paths and polymorphic code but this really hard. Also as I mentioned some runtimes (builtins) methods / classes like string concatenation you can't speedup at all.

And last but not least WebAssembly will support SIMD soon (after Chrome 91, FF 89). JavaScript will never support SIMD. SIMD.js was frozen

from hegel.

MaxGraey avatar MaxGraey commented on August 24, 2024

WASM and JS use the same optimizing backend. You can manipulate both to get similar results.

Yes and no. First of all JS hasn't some operations like popcount, ctz, rorl, rotr per-bit reinterpret int to float and vice versa. See how this affect to performance. The reason is very simple. Also turbofun have special optimizations only for wasm backend which not yet enabled. Like this one: https://bugs.chromium.org/p/v8/issues/detail?id=11298&q=unroll&can=2. And still not apply some important optimisations for i64/u64: https://bugs.chromium.org/p/v8/issues/detail?id=11085&q=wasm%20optimize%20i64&can=2

Also JS compiler has a fairly limited time for sophisticated optimizations in graph IR while LLVM / Binaryen can spend much more time for advanced analysis and optimizations

from hegel.

CrazyPython avatar CrazyPython commented on August 24, 2024

Or you could use d8/chrome with --trace-deopt to figure outing de-optimizations paths and polymorphic code but this really hard.

Not really. It's just a simple matter of benchmarking different approaches and finding the right one.

First of all JS hasn't some operations like popcount

TurboFan can nonetheless generate it.

  --enable-popcnt (enable use of POPCNT instruction if available)
        type: bool  default: true

I doubt the examples you named– loop unrolling, popcount– are common at all for a typechecker like Hegel.

Some optimizations are JS-only, that would require manual code in WASM.

from hegel.

texastoland avatar texastoland commented on August 24, 2024

Seems like that discussion got really off-topic. @JSMonk How long do you anticipate until a v2 beta?

from hegel.

hazelTheParrot avatar hazelTheParrot commented on August 24, 2024

"I planed to implement the MVP in September/October of this year."

How is the progress? Soon october now. So a v. 2.0 will be released when?

from hegel.

boogerlad avatar boogerlad commented on August 24, 2024

don't mean to rush you and I know estimates are hard. Do you think it'll be sometime this year?

from hegel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.