specialized-function VS numericals

Compare specialized-function vs numericals and see what are their differences.

numericals

CFFI enabled SIMD powered simple-math numerical operations on arrays for Common Lisp [still experimental] (by digikar99)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
specialized-function numericals
2 6
60 47
- -
0.0 7.7
almost 3 years ago 28 days ago
Common Lisp Common Lisp
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

specialized-function

Posts with mentions or reviews of specialized-function. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-02.
  • numericals - Performance of NumPy with the goodness of Common Lisp
    8 projects | /r/lisp | 2 Aug 2022
    Since the past year or two, I have been working on numericals that aims to provide the speed of NumPy with the goodness of Common Lisp. In particular, this includes the use of dynamic variables, restarts, and compiler-notes wherever appropriate. It uses CLTL2 API (and may be slightly more) under the hood to provide AOT dispatch, but nothing stops you from combining it with JAOT dispatch provided by numcl/specialized-function. This also spawned a number of projects most notably polymorphic-functions to dispatch on types instead of classes and extensible-compound-types that allows one to define user defined compound types (beyond just the type-aliases enabled by deftype. Fortunately enough, interoperation between magicl, numcl and numericals/dense-numericals actually looks plausible!
  • Static-Dispatch 0.5: Improved inlining on SBCL and performance improvements for generic-cl
    3 projects | /r/Common_Lisp | 16 Apr 2021
    I guess specialized-function would be what you are looking for, although I'm unsure if it already / can-be-made-to take(s) recompilation into account.

numericals

Posts with mentions or reviews of numericals. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-02.
  • numericals - Performance of NumPy with the goodness of Common Lisp
    8 projects | /r/lisp | 2 Aug 2022
    How about the semantics? Nevermind, I looked -- utter nonsense, just like numpy.
  • Good Lisp libraries for math
    7 projects | /r/lisp | 21 May 2022
    Then there is a question - do you actually need these libraries? You can optimize code in Common Lisp (type declarations, usage of appropriate data structures, SIMD instructions etc). See this: https://github.com/digikar99/numericals/tree/master/sbcl-numericals <- SIMD instructions used from SBCL (on x86; these are processor-family specific so Apple M1 will have different ones).
  • Image classification in CL? Help with starting point
    8 projects | /r/Common_Lisp | 20 Sep 2021
    *I have not; I have a couple of WIP/alpha-stage libraries like dense-arrays and numericals that could be useful; once I find the time, I want to think about if these or its dependencies can be integrated into the existing libraries including antik mentioned by awesome-cl.
  • Machine Learning in Lisp
    12 projects | /r/lisp | 4 Jun 2021
    Personally, I've been relying on the stream-based method using py4cl/2, mostly because I did not - and perhaps do not - have the knowledge and time to dig into the CFFI based method. The limitation is that this would get you less than 10000 python interactions per second. That is sufficient if you will be running a long running python task - and I have successfully run trivial ML programs using it, but any intensive array processing gets in the way. For this later task, there are a few emerging libraries like numcl and array-operations without SIMD (yet), and numericals using SIMD. For reasons mentioned on the readme, I recently cooked up dense-arrays. This has interchangeable backends and can also use cl-cuda. But barring that, the developer overhead of actually setting up native-CFFI ecosystem is still too high, and I'm back to py4cl/2 for tasks beyond array processing.
  • polymorphic-functions - Possibly AOT dispatch on argument types with support for optional and keyword argument dispatch
    9 projects | /r/lisp | 21 May 2021
    I made this while running into code modularity issues with the numericals project I attempted last year; I did discover specialization-store, but found its goals in conflict with what I wanted to achieve; so I ended up investing in this.

What are some alternatives?

When comparing specialized-function and numericals you can also consider the following projects:

generic-cl - Generic function interface to standard Common Lisp functions

cl-cuda - Cl-cuda is a library to use NVIDIA CUDA in Common Lisp programs.

py4cl - Call python from Common Lisp

py4cl2 - Call python from Common Lisp

specialization-store - A different type of generic function for common lisp.

Petalisp - Elegant High Performance Computing

dense-arrays - Numpy like array object for common lisp

polymorphic-functions - A function type to dispatch on types instead of classes with partial support for dispatching on optional and keyword argument types.

numcl - Numpy clone in Common Lisp

extensible-compound-types - User defined compound types in Common Lisp

hissp - It's Python with a Lissp.

dense-numericals - Numerical Computing library with https://github.com/digikar99/dense-arrays as the front-end