Skip to content

Commit 871fda8

Browse files
committed
Add eta-slam url.
1 parent 963b44a commit 871fda8

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ the full doc at [ReadTheDocs](https://tinyopt.readthedocs.io/en/latest).
103103

104104

105105
## Setup
106-
We're currently evaluating small dense problems (<50 dimensions) with one cost function on a
106+
We're currently evaluating small dense problems (<=50 dimensions) with one cost function on a
107107
Ubuntu GNU/Linux 2024.04 64b.
108108
We're showing without Automatic Differentiation as there's some time increase with it, but not that much for small systems.
109109
The script `benchmarks/scripts/run.sh` was called after making sure the CPU powermodes were all in 'performance'.
110110
Plotting is done using the notebook `benchmarks/scripts/results.ipynb`.
111111

112112
## Benchmarks Results 🎯
113113

114-
Check this out, we're comparing `Tinyopt` against the well known [Ceres solver](http://ceres-solver.org/).
114+
Check this out, we're comparing `Tinyopt` against the well known [Ceres solver](http://ceres-solver.org). Times are in µs.
115115

116116
![Benchmarks Results](docs/benchmark-ceres-table.png)
117117

@@ -182,8 +182,7 @@ Otherwise, have fun using `Tinyopt` ;)
182182

183183
## Got Big Ideas (or Just Want to Chat Business)?
184184

185-
If your business needs a super fast 🔥 **Bundle Adjustment** (BA), a multi-sensor **SLAM** or
186-
if `Tinyopt` is still taking its sweet time with your application and
185+
If your business needs a super fast 🔥 [**Bundle Adjustment** (BA)](https://github.com/julien-michot/eta-slam-public), a multi-sensor **[SLAM](https://github.com/julien-michot/eta-slam-public)** or if `Tinyopt` is still taking its sweet time with your application and
187186
you're finding yourself drumming your fingers impatiently, don't despair!
188187

189188
Feel free to give [me](https://github.com/julien-michot) a shout, I can probably help!

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Here is an example on how to use Tinyopt:
1717

1818
using namespace tinyopt::nlls; // Import the optimizer you want, say the default NLLS one
1919
double x = 1;
20-
Optimize(x, [](auto &x) { return x * x - 2.0; }); // 'x' is √2 after that, amazing.
20+
Optimize(x, [](auto &x) { return x * x - 2.0; }); // 'x' is sqrt(2) after that, amazing.
2121

2222
Tinyopt is open-source, licensed under the Apache 2.0 License.

0 commit comments

Comments
 (0)