Viewing profile — fredrikbk
fredrikbk
HN member- Joined
- Tue, Jul 26, 2016, 7:20 AM UTC
- HN karma
- 41
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About fredrikbk
No profile information was provided.
Recent public activity
-
comment
Comment #16393510
That is correct (and we appreciate the citation). The tensor compiler (taco) has focused on compiling expressions that contain one or more sparse tensors so far and, even though it…
-
comment
Comment #15607671
The story for sparse matrices is more complicated. Because of the dependencies imposes by sparse data structures (you don’t have random access and often have to traverse them) you …
-
comment
Comment #15607034
We’ve tried to engineer it to emit clean code, but seems we left in some unused variables. The C compilers dead code elimination should remove those though.
-
comment
Comment #15607016
We currently compile to C code and use the system Compiler to compile it further. For dense loop nests it does a good job of auto-vectorizing, but we believe there’s good opportuni…
-
comment
Comment #15606940
That is a good idea, but we are only so many. One student in the Julia group is developing Julia bindings though, and we hope to make C/python bindings. The inner workings are publ…
-
comment
Comment #15606922
Thanks, that is really nice of you :)
-
comment
Comment #15606914
For sure, as you point out, many such kernels have been written, going at least as far back as 1967. We believe our contribution is being able to generate kernels for all the expre…
-
comment
Comment #15603971
I don't know of an explicit list like this, but some areas that we are particularly interested in are: data analytics (tensor factorization), machine learning (anything sparse incl…
-
comment
Comment #15603945
Thanks! I really like that conference!
-
comment
Comment #15603930
Hi, that sounds very interesting and I hope someone works on it. We're only so many people though, and we have several things we want to do that will at least occupy us until next …
-
comment
Comment #15603877
Larry chose to focus on the big data part, because it is intuitive. But I think you're absolutely correct, that it has applications in physics/chemistry (and machine learning too).…
-
comment
Comment #15603326
Hi Hacker News! I’m one of the developers. This project was also featured in MIT News yesterday: http://news.mit.edu/2017/faster-big-data-analysis-tensor-alg... The code is availab…
-
comment
Comment #12380076
Thanks! Yes, we have an `apps` directory in the source tree that we will add programs to. These programs are tested by our test suites, and will later be our performance regression…
-
comment
Comment #12380067
Very valid concerns. If you use C++ it's easy to interoperate with Simit, since Simit is a C++ library with an online compiler that compile the time steppers. You build the graph u…
-
comment
Comment #12379679
We needed new language constructs (the matrix assembly) and a new type system for matrices that ties back to the graph to make it simple and fast. It is also not limited to FEM cod…
-
comment
Comment #12379651
It actually shares two authors (Jon and Saman). Their work on Halide was amazing!