pityka

Results 25 comments of pityka

Hello! Thank you for creating the issue. I found an other strange behaviour related to the injection of codecs from implicits. In this case the decoder threw an NullPointerException. I...

It looks like a case class would work. I think I wanted to decouple the name of the class from the name of the type. This decision was probably made...

the name `par` mimics this: https://www.rdocumentation.org/packages/graphics/versions/3.6.2/topics/par, indeed probably does not ring a bell for many. I believe the only difference is that the compiler will synthesize a big unapply for...

I have an issue with clang12 on mac on release-fast and release. Release-size and debug modes work. ``` //> using scala 2.13 //> using platform scala-native //> using nativeVersion 0.5.0-SNAPSHOT...

Works with 0.4.14 and not with 0.5.0-SNAPSHOT. ``` clang --version Apple clang version 12.0.0 (clang-1200.0.32.29) Target: x86_64-apple-darwin19.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin ``` (edited)

Hello @bjornregnell! Thanks for the pointers. I am contemplating on saving the keystrokes of the 'with` and omitting that prefix, e.g. ```scala case class Person private (name: String, age: Int):...

Thanks for the explanations @bjornregnell . I agree that discoverability in an IDE is important in this case. In PR #121 I added two copy methods per parameter: e.g. for...

awesome! do you want to merge now, or still work on it?

I left two comments, they are "pending", minor edits.

See https://github.com/pityka/saddle/commit/bc8f2dedcf82424e6e00960837f1032fb0ad83b5 on how to inspect the machine instructions. Initial impressions: - dot product (def vv_java in linalg) indeed vectorizes if the manual unrolling is eliminated. - the binary operations...