Skip to content

Instantly share code, notes, and snippets.

View torfjelde's full-sized avatar

Tor Erlend Fjelde torfjelde

View GitHub Profile
@jthaman
jthaman / consult-ripgrep-all.el
Last active March 16, 2025 19:24
Call ripgrep-all in emacs with consult
;; New versions of consult make this dramatically simpler than it used to be. Just one function that you can bind to a key:
;;;###autoload
(defun consult-ripgrep-all (&optional dir initial)
(interactive "P")
(let ((consult-ripgrep-args "rga --null --line-buffered --color=never --max-columns=1000 --smart-case --no-heading --with-filename --line-number"))
(consult-ripgrep dir initial)))
using ForwardDiff
goo((x, y, z),) = [x^2*z, x*y*z, abs(z)-y]
foo((x, y, z),) = [x^2*z, x*y*z, abs(z)-y]
function foo(u::Vector{ForwardDiff.Dual{T,V,P}}) where {T,V,P}
# unpack: AoS -> SoA
vs = ForwardDiff.value.(u)
# you can play with the dimension here, sometimes it makes sense to transpose
ps = mapreduce(ForwardDiff.partials, hcat, u)
# get f(vs)
val = foo(vs)