Perspective: Streaming pivot visualization via WebAssembly
121–130 of 141 posts
Re: Perspective: Streaming pivot visualization via WebAssembly
#122Earlier quoted context omitted.
the stock market is digital, they are a software company.
Having worked at a branch off a university devoted to its online school and content marketing where the inputs and outputs of production are entirely digital, I can say they sure as hell aren't a software company; nobody above on-the-ground grunts think much about even the big pictures of domain modeling / workflows, data ingestion / transformation, computing / efficiency / performance, software development lifecycle…
Re: Perspective: Streaming pivot visualization via WebAssembly
#123Earlier quoted context omitted.
> Even outside of C/C++, Emscripten seems to be required in some fashion for just about every "compile X to webasm". One exception to this is Rust's new "wasm32-unknown-unknown" target, which uses LLVM to directly generate wasm files without going through emscripten: https://www.hellorust.com/news/native-wasm-target.html The easiest way to use it for larger projects is probably via https://github.com/koute/cargo-web…
Yeah I'm super excited about Rust's new webasm compiler, as well as some new-ish stuff with .Net that works without Emscripten. I get the ecosystem is super young, but it was honestly what kept me from playing with Webasm for a while, because each time I'd sit down to play with it I'd be in for a 3 hour compile after spending an hour getting my windows machine to have the right compilers and not stomping over other t…
Currently there shouldn't be anything like that, it will download a binary build of LLVM+clang for your system. It should be ready to use immediately after that download.
Re: Perspective: Streaming pivot visualization via WebAssembly
#124Earlier quoted context omitted.
Did you experiment with doing it JS-only prior to the C++ version? If so, what kind of performance increase did you see with WebAssembly?
This++ WebAssembly can be certainly faster than JS in certain situations, but well-structured, monomorphic JS with the kind of type-hints for numeric values that asm.js is based off of can be extremely fast as well. It'd be great to check the assumption that WASM is actually faster in this case, and by how much, especially given the friction of sending anything other than numbers across the JS/WASM boundary.
Re: Perspective: Streaming pivot visualization via WebAssembly
#125Earlier quoted context omitted.
Having worked at a branch off a university devoted to its online school and content marketing where the inputs and outputs of production are entirely digital, I can say they sure as hell aren't a software company; nobody above on-the-ground grunts think much about even the big pictures of domain modeling / workflows, data ingestion / transformation, computing / efficiency / performance, software development lifecycle…
I think it is more correct to say that a large subunit of JPM works as a software company -- for its internal use. All modern financial companies are heavily tech oriented, even those you wouldn't normally think of that way. The best tech firms I've ever been involved with financial firms from front desk trading on back. One of the best tech teams I've ever met with has been one of Bloomberg's teams dealing with thei…
All I'm getting at is that those present set of truths, that that reality hasn't spread everywhere yet, and it's still worth celebrating when it has and when it goes well.
There are plenty of people given plenty of power in leadership that won't bring themselves to understand technology and have yet to retire.
Re: Perspective: Streaming pivot visualization via WebAssembly
#126Poor naming choice. Google Perspective has been around for a year or two I believe.
Go was already a programming language when Google steamrollered the name!
Re: Perspective: Streaming pivot visualization via WebAssembly
#127Earlier quoted context omitted.
cargo-web uses emscripten under the hood.
No, he is right. cargo-web supports three backends, of which only two include emscripten and the third using a native rust backend. https://github.com/koute/cargo-web#features Rust can be compiled to wasm without emscripten using wasm32-unknown-unknown.
Re: Perspective: Streaming pivot visualization via WebAssembly
#128Really cool to see non-software companies putting cool projects like this out as open source
Re: Perspective: Streaming pivot visualization via WebAssembly
#129really cool. would love to see a Rust version.
Re: Perspective: Streaming pivot visualization via WebAssembly
#130Earlier quoted context omitted.
The boundary-crossing is definitely the bottleneck right now. We are currently putting alot of work into the Apache Arrow support specifically to avoid this crossover, which will allow us to send data from the server in binary and avoid parsing in the browser.
bringing Apache Arrow in the browser alongside wasm is exciting to say the least! Amazing capabilities are coming to browsers...
Funny enough: was in NYC today talking with banking teams about related tech. Too bad we didn't know about this effort, would have loved to meet!