uncomplicate

sparkofreason 2017-05-26T19:54:59.404968Z

I'm interested in accessing some MKL functions not currently supported by MKL, by extending neaderthal-native, or at least using it as a guiding example. In either case, how does neanderthal-native get built? Is all of the required info in the POMs in that project, or does neanderthal handle some of it?

2017-05-26T19:57:45.434948Z

everything is in neanderthal-native's pom

2017-05-26T20:00:47.469400Z

and neanderthal-mkl's pom

2017-05-26T20:01:21.476072Z

multiplatform builds are always tricky, but i think i made this relatively painless

2017-05-26T20:02:24.488482Z

what are the operations that you need? @dave.dixon

sparkofreason 2017-05-26T20:03:42.503269Z

Probably others at some point too - lots of handy stuff in there. But have an immediate need for nonlinear least squares.

2017-05-26T20:09:09.562117Z

those operations need initialization, state, and handlers. won't be straightforward at all...

2017-05-26T20:10:04.571951Z

...and won't be as easy to use as existing neanderthal functions.

sparkofreason 2017-05-26T20:12:17.595662Z

I see what you mean. I'll have to think if it's worth it to tackle that or not.