Releases: mentat-collective/emmy
0.32.0: Reverse-mode AD is here!
This release has been a long time coming, and introduces some substantial improvements to Emmy. The top-line items are:
Reverse-mode automatic differentiation
Forward-mode AD is now much simpler to understand; the implementation lives in emmy.dual. emmy.tape and emmy.autodiff round out our AD implementations.
Our reverse-mode AD implementation is faster for everything in the library, but substantially faster for functions with many inputs and few outputs (like Lagrangians). See the new D-forward, D-reverse, partial-forward and partial-reverse for more control over which you like.
Native Complex and Fraction
@littleredcomputer implemented our Fraction.js and Complex.js dependencies in pure CLJS, letting us remove these JS dependencies. This opens the door for symbolic complex numbers and more fun down the road.
Value protocol => multimethods
The emmy.value/Value protocol is now gone, in favor of a "multimethods everywhere" approach. If you want speed you can compile your functions... otherwise simple is better, and this keeps us closer to the scmutils style.
Excellent docs on https://2.maria.cloud
Thanks to @mhuebert, SCI now properly grabs all docstrings and arglists from all Emmy functions, making for an excellent user experience.
Faster compilation
@littleredcomputer (in #143) replaced thee the implementation of common subexpression elimination with the algorithm described in Flajolet's 1990 paper (cited within). This speeds up (and makes possible at all) compilation of some of the big, nasty functions we ran into generating manifolds in examples like https://sritchie.github.io/strange-loop-2023/notebooks/stl/pq_knot
All CHANGELOG entries
-
#170:
-
changes
Dandpartialto use reverse mode automatic differentiation by default, and fixes all associated tests -
adds
emmy.generic/{zero?,one?,identity?}implementations (all false) toemmy.tape/Completed, in case some collection type tries to simplify these during reverse-mode AD
-
-
#185:
-
adds a dynamic variable
emmy.calculus.derivative/*mode*that allows the user to switch between forward and reverse mode automatic differentiation -
adds a new
emmy.calculus.derivative/gradientthat acts likeemmy.tape/gradientbut is capable of taking multiple variables -
adds new operators
emmy.calculus.derivative/{D-forward, D-reverse}and operator-returning-functionsemmy.calculus.derivative/{partial-forward, partial-reverse}that allow the user to explicitly invoke forward-mode or reverse-mode automatic differentiation.Dandpartialstill default to forward-mode -
modifies
emmy.tape/gradientto correctly error when passed invalid selectors, just likeemmy.dual/derivative.
-
-
#183:
-
adds
emmy.{autodiff, tape}toemmy.sci's exported namespace set -
adds
emmy.dual/extract-idimplementations for all supported output types (every type that already implementsemmy.dual/IPerturbed) -
moves
emmy.tape/Completedtoemmy.dual/Completed; it doesn't really make sense there, but this is the only current way to remove the circular dependency betweenemmy.dualandemmy.tape. (tapeneeds adualimport to gainemmy.dual/IPerturbed.) -
simplifies the
emmy.tape/gradientimplementation down to only handle single real-or-structural arguments, just likeemmy.dual/derivative. We'll share the "handle-multiple-input" implementation between the two in a follow-up PR -
makes the tests in
emmy.calculus.derivativegeneric on the derivative implementation, so we can run all tests in forward and reverse mode.
-
-
#182:
-
moves the generic implementations for
TapeCellandDualtoemmy.autodiff -
moves
emmy.calculus.derivativetoemmy.dual/derivative -
removes
emmy.dual/perturbed?fromIPerturbed, as this is no longer used.
-
-
#180 renames
emmy.differentialtoemmy.dual, since the file now contains a proper dual number implementation, not a truncated multivariate power series. -
#179:
-
Moves the
IPerturbedimplementation for functions toemmy.function, out ofemmy.calculus.derivative -
Adds a new
modeparameter toemmy.differential/extract-tangent, in preparation for allowing reverse and forward mode across all output types
-
-
#175:
-
Adds
emmy.env/{tau,-tau}constants for the$\tau$ fans out there -
Adds
^:constmetadata to all constants, reaping small performance wins -
Updates
emmy.numerical.unimin.brent/{brent-min,brent-max,brent-min-commons,brent-max-commons}to:-
take a new
:initial-guessargument, useful if you have some idea of where the minimum might lie -
swaps the relative and absolute threshold defaults to match those from
scmutils -
adjusts the initial guess from the midpoint between
aandbto a golden section cut (closer toa), to matchscmutils
-
-
-
#156:
-
Makes forward- and reverse-mode automatic differentiation compatible with each other, allowing for proper mixed-mode AD
-
Adds support for derivatives of literal functions in reverse-mode
-
-
#165:
-
Fixes Alexey's Amazing Bug for our tape implementation
-
Adds the
idfield back intoTapeCell, required for the tag replacement machinery for fixing Alexey's Bug -
Adds an
emmy.differential/IPerturbedimplementation to TapeCell -
Fixes some old documentation referencing
:in->partials, plural -
Updates
emmy.tape/tag-ofto return nil in case of a non-tape argument vs##-Inf, again preparation for forward/reverse interactions -
Adds support for partial derivatives via a
selectorsargument togradient -
Fixes a bug in the
g/absimplementation forTapeCell, where(g/abs <tape>)would return a positive primal -
Adds a
simplifyimplementation forTapeCell
-
-
#163:
-
replaces the
emmy.differential.Differentialgeneralized dual and its term list algebra with a simplifiedemmy.differential.Dualnumber typeThis new approach works because the
emmy.differential/*active-tags*stack allows us to make sure that lifted binary operations always wrap their output in a newDualwith the tag assigned by the inner-most derivative call. -
deletes
emmy.util.vector-setand tests, as these are no longer used -
adds a
nilimplementation forextract-tangent, meaning thatnil-valued functions now work withD
-
-
#159:
-
Fixes
Differential's implementation ofemmy.value/numerical?to always returnfalse. The reason is thatnumerical?is used byg/*and friends to decide on simplifications like(* <dx-with-1> x) => x, which would lose the structure ofdx-with-1. By returning false we avoid these simplifications. -
Converts a number of
emmy.value/numerical?calls toemmy.value/scalar?. Thenumerical?protocol method is used only in generic functions likeg/*for deciding whether or not to apply numerical simplifications, like(* x 1) => x.Guarding on
v/scalar?instead allows us to let in numbers, tapes and differentials, since these latter two are meant to WRAP numbers, but should not be subject to numerical simplifications. -
Adds
emmy.structure/fold-chainfor performing a tree-like fold on structures, saving us work over the alternate pattern ofs/mapr,flattenandreduce.
-
-
-
Replace the implementation of arbitrary-precision rational arithmetic provided by
fraction.jswith Clojure code, allowing us to remove a JavaScript dependency. -
We note here a subtlety with fraction reader syntax. When the CLJS compiler runs and encounters input like
#emmy/ratio 1/2, since the compilation occurs in a JVM Clojure environment the 1/2 will deserialize as a Ratio, which is then transformed by the reader into code which will generate a ClojureScriptFraction. The ClojureScript reader, however, evaluates the input as q JS expression resulting in 0.5, which is then rationalized with an expensive algorithm which may lose exactness because of the unwanted floating-point conversion. For this reason, when we emit a ratio in string form, we quote the arguments:#emmy/ratio "1/2"to prevent the conversion. Consider this a deprecation notice for the unquoted form. We also now allow the form#emmy/ratio [1 2], like Complex, and now no longer allow an initial+on the numerator.
-
-
#154:
-
Adds
emmy.tapewith an implementation of reverse-mode automatic differentiation. The implementation is based on Alexey Radul's implementation in dvl, and seems to be higher-performance by quite a bit and capable of replacing our forward-mode implementation.-
The centerpiece of the implementation is
emmy.tape/gradient, which can handle$R^n \to R^m$ functions, as well as nested derivatives. -
All operations supported by [[emmy.differential/Differential]] are supported by the backing [[emmy.tape/TapeCell]] instance.
-
-
-
-
By porting
complex.jsto Clojure, we can remove the dependency on this library on the JavaScript side as well as the Apache Commons complex implementation on the JVM side.The JavaScript implementation is followed fairly closely and done with generic Emmy arithmetic at the component level (except when that is clearly unnecessary). The
(complex)constructor has been made equivalent to the reader parser.The former implementation made a special case of i^r, raising the complex unit to a real power, but it only worked for integral r, and threw an exception in other cases; this special case is removed.
-
-
-
Retires the Value protocol in favor of MultiFns in the generic scope. Doing this carefully, by revoking the existing implementation and then restoring it step by step, revealed some interesting corner cases:
-
(zero? [0])but(not (zero? (lazy-seq [0])))
...
-
-
0.31.0: emmy.js support, TeX improvements
-
#139:
-
Fixes matrix and simplification-related test failures introduced in the last couple of PRs.
-
Removes the custom
->Quaternionconstructor inemmy.quaternion; this was causing build warnings incljs. Any place you might have used->Quaternion, please useemmy.quaternion/make. -
Backs off the various protocol extensions in
emmy.collectionfromIPersistentMapandIPersistentSetto the concrete types shipped with Clojure. This prevents these implementations from attaching, on the JVM side, to newdefrecordinstances or other types that extend those protocols. -
Fixes a documentation error with
emmy.generic/atan.
-
-
#135:
-
Adds some hidden features for use by
emmy.jsto support use of Emmy from JavaScript. These features are not used by default, but are meant to be opted-in by JS libraries that need them. -
The function object now uses the field
f-nameinstead ofnameto hold the name of the function. The name property of Function objects in JS is readonly, so we need a different property that we can modify in order to create a JS object which is both an Emmy and an ES6 function. -
Adds the function
make-es6-callableto promote an IFn object to a native JS function by birthing a new function object which delegates to the original object's apply method, and copying over the rest of the object's identity. -
Adds the function
make-es6-indexableto promote an Emmy Structure to something that behaves more like an ES6 array. -
Structure objects are declared
es6-iterableusing a standard CLJS feature. -
Using
with-metaon a function creates a new object which is not a native JS function, though still invokable in Clojure. This is a steep price to pay for the privilege of adding metadata to a function, so for function objects we allow metadata to be directly applied.The IMeta interface can be used to retrieve this property-based metadata, but IWithMeta cannot be used to attach it (this interface guarantees the production of a new object). See
emmy.function/with-meta.
-
-
#134:
-
Adds
->TeXhandlers formatrix-by-rowsandcolumn-matrix. -
matrices now freeze into
(matrix-by-rows [...] [...])instead of(matrix-by-rows (up ...) (up ...)). -
functions in
emmy.numerical.odenow set:compile?totrueby default. -
Fixes some
TeXtypos in a few of the literate notebooks.
-
-
#131 fixes accidental simplification of keywords to
nil.
0.30.0: first Emmy release!
This release includes big performance upgrades to the emmy.numerical.ode and emmy.expression.compile namespaces. These features anticipate lots of lovely visualization features that'll be coming soon.
To port from sicmutils, simply rename sicmutils to emmy everywhere. (If you were using pattern.*, you'll need to add an emmy prefix and use emmy.pattern.match etc instead.)
We also have a new website at https://emmy.mentat.org, and a new project template for getting started with Emmy and Clerk.
Changelog entries:
-
#126:
-
Adds a
deps-newtemplate that sets up a basic Clerk project withEmmyinstalled as a dependency. The template lives here. -
Adds
dev/emmy/notebook.cljas the new homepage for https://emmy.mentat.org.
-
-
#98 upgrades
same/ishto 0.1.6, renames allsamerequires tosame.coreand removes final:include-macros truefrom the codebase. -
#124:
-
Upgrades
babashka/scito 0.7.39. -
Adds a working
bb replcommand to the repository. -
Renames
emmy.env.sci=>emmy.sci, and adds anemmy.sci/install!command to make it easier to install all namespaces into a shared SCI context. -
Renames
context-optsin the newemmy.scitoemmy.sci/config, to match thesci-configsstyle.
The full library is now published to
https://emmy.mentat.orgas a series of Clerk notebooks. This required a dependency on https://clerk-utils.mentat.org, but no actual Clerk dependency in the library. -
-
#119:
-
Removes support for
:flatcompilation mode (this was a step toward what is now called :primitive). Flat has no further use case. -
You can now "bring your own array" to the function provided by
stream-integrator, avoiding an allocation in performance-sensitive contexts.
-
-
#118:
-
Fixes problems with the
resolvecalls inemmy.util.deftriggered by vanilla (non-shadow) cljs compilation. -
Updates
Complex.jsandFraction.jsdependencies to their latest NPM versions. -
Updates
odexto the latest release candidate on NPM. -
The
cljsside ofemmy.numerical.ode/stream-integratorgains a:js?option that defaults totrue. Iffalse, the returned function will return native JS arrays vs converting the return value to Clojure. -
In
emmy.expression.compile,compile-fnandcompile-state-fngain a:simplify?argument that defaults totrue. Iffalse, compilation will not attempt to simplify the function body before proceeding.
-
-
#115:
This PR introduces significant upgrades to the functions in
emmy.expression.compile.compile-state-fnandcompile-fnnow share the same code. Expect some more shifts here as we work on animations.Specifically, this update:
-
Removes timers from the code in
emmy.numerical.ode. If you want timing data you can generate an derivative yourself that performs timing. Including this by default introduced a significant performance cost. -
Renames
emmy.numerical.ode/integration-optstomake-integrator*; it now returns only a call tostream-integratorinstead of the old map of this result and timers. -
In
emmy.expression.compile:-
compile-state-fn*andcompile-fn*are now removed, in favor of the non-starred versions with option:cache? falsesupplied. -
compile-fnnow callscompile-state-fnwithparamsset tofalseand an:arityoption supplied, vs using its own mostly-duplicated implementation. -
:flatten?option removed in favor of the more granular:calling-convention. This option supports values of:structure,:flatand:primitive. See the docstring for details. -
:modesupports:js,:source,:clj,:nativeor:sci.
-
-
-
#110:
-
Moves all docstrings that existed as metadata on defs (i.e.,
(def ^{:doc "..."} sym ...)) down below the symbol. I hadn't realized that this was a valid way to attach a docstring! -
Upgrades GitHub Actions
clj-kondoinvocation to version 2013.01.20 and saves some work in the actions setup. Fix all linting errors that resulted.
-
-
#109:
-
->JavaScriptnow produces expressions, and not function bodies. This change makes->JavaScriptdo the same job as->infixand->TeX. Initially, the JS rendering emitted a function in order to facilitate experiments with embedding equations of motion in dynamic web pages. This can still be done:compile-state-fnhas been extended to allow the compilation of a state function into either Clojure or Javascript notation. The test directory contains many worked examples. -
numerous local
gensymreplacements found useful as part of test fixtures have been gathered together intomonotonic-symbol-generator. -
generation of sums and differences in all of the infix generators has been improved to more closely approach standard mathematical notation (e.g., instead of
-2 * x + -2 * yyou will see- 2 * x - 2 * y).
-
-
#107:
-
move CSE to its own namespace to avoid the circular dependency
compile->render->compile -
refactor JS rendering to allow compiler to use it
-
adjust meaning of :native and :source compilation modes: now you get what's compatible with your execution environment. You can also ask for a specific language, allowing tests to be bilingual.
-
-
#100:
-
Implements predicate support for
segment,entire-segmentandreverse-segmentinemmy.pattern.match. This support bubbles up to forms in rules like(?? x pred1 pred2). -
Removes the
:emmy.pattern/ignored-restrictionlinter keyword, and all clj-kondo code warning that restrictions aren't supported on segment binding forms.
-
-
#96 renames
#sicm/{bigint, quaternion, complex, ratio}to#emmy/{bigint, quaternion, complex, ratio}. -
-
Renames the
sicmutilsportion of all namespaces toemmy. -
Moves the
pattern.*namespaces intoemmy.pattern.* -
Ran
cljfmton all code to tidy up hidden tabs, extra whitespace, etc -
Attempted to switch over all badges and links to the proper new locations... we'll see how this went, and I'll fix anything I missed as it comes up.
-