diff --git a/paper/header.tex b/paper/header.tex index 8f40c90..e4c4c78 100644 --- a/paper/header.tex +++ b/paper/header.tex @@ -13,3 +13,4 @@ pdfauthor = {BenoƮt Legat}, pdfkeywords = {Julia, Optimization, Performance, Interface}, } + diff --git a/paper/paper.tex b/paper/paper.tex index 8397d5f..6121db9 100644 --- a/paper/paper.tex +++ b/paper/paper.tex @@ -118,7 +118,7 @@ \subsection{Should mutate} (ignoring the simplification with \lstinline|gcd| for simplicity). Using \lstinline|a.num = mul!!(a.num, b.num); a.den = mul!!(a.den, b.den)| -(where \lstinline|mul!!| follows BangBang's conventioni) +(where \lstinline|mul!!| follows BangBang's convention) is not an option since the \lstinline|Rational| struct is not mutable. @@ -406,7 +406,7 @@ \subsection{Matrix-vector product} typeof(A), typeof(b), ) -@allocated buffered_operate!(buf, add_mul, c, A, b) +@ballocated buffered_operate!($buf, add_mul, $c, $A, $b) # output