Skip to content
Snippets Groups Projects

More efficient 'tell_many'

Merged Bas Nijholt requested to merge efficient_tell_many into master
import adaptive

def f(x, offset=0):
    a = 0.01
    return x + a**2 / (a**2 + (x - offset)**2)

learner = adaptive.Learner1D(f, bounds=(-1, 1))
adaptive.runner.simple(learner, goal=lambda l: l.npoints > 200)

Timing new implementation

%%timeit
learner2 = adaptive.Learner1D(f, bounds=(-1, 1))
learner2.tell_many(*zip(*learner.data.items()))

1.17 ms ± 24.9 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

Timing old implementation

%%timeit
learner2 = adaptive.Learner1D(f, bounds=(-1, 1))
for x, y in learner.data.items():
    learner2.tell(x, y)

6.82 ms ± 447 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)

This makes it ~6 times faster for functions that return scalars and is >10 times faster for vectors.

Edited by Bas Nijholt

Merge request reports

Pipeline #12360 passed

Pipeline passed for d09a3c93 on efficient_tell_many

Test coverage 82.00% (1.00%) from 1 job
Approval is optional

Merged by Bas NijholtBas Nijholt 6 years ago (Sep 28, 2018 2:18pm UTC)

Merge details

  • Changes merged into master with c26ac920.
  • Deleted the source branch.
  • Auto-merge enabled

Pipeline #12361 passed

Pipeline passed for c26ac920 on master

Test coverage 82.00% (1.00%) from 1 job

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Joseph Weston resolved all discussions

    resolved all discussions

  • Joseph Weston
  • Joseph Weston
  • Joseph Weston
  • Joseph Weston
  • Jorn Hoofwijk changed milestone to %v0.6

    changed milestone to %v0.6

  • Bas Nijholt added 7 commits

    added 7 commits

    • f1d4f04b...73103e61 - 3 commits from branch master
    • 775190fe - 1D: implement a more efficient 'tell_many'
    • 51cfc988 - 1D: test the more efficient 'tell_many'
    • 3bab1b6a - 1D: sort the data when plotting a 'holoviews.Path'
    • c32600b4 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 5 commits

    added 5 commits

    • 318f27f7 - 1 commit from branch master
    • 1c0145e3 - 1D: implement a more efficient 'tell_many'
    • 3f667fbd - 1D: test the more efficient 'tell_many'
    • 537415c0 - 1D: sort the data when plotting a 'holoviews.Path'
    • fc106084 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • 7e17e80e - 1D: implement a more efficient 'tell_many'
    • d15c1908 - 1D: test the more efficient 'tell_many'
    • 3c93160f - 1D: sort the data when plotting a 'holoviews.Path'
    • 904eeebc - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • b3495b7d - 1D: implement a more efficient 'tell_many'
    • 68d42e64 - 1D: test the more efficient 'tell_many'
    • a00f027e - 1D: sort the data when plotting a 'holoviews.Path'
    • 2932201b - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • ef0bed00 - 1D: implement a more efficient 'tell_many'
    • a09240df - 1D: test the more efficient 'tell_many'
    • c40e7e57 - 1D: sort the data when plotting a 'holoviews.Path'
    • 795dd8a9 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • 86014bec - 1D: implement a more efficient 'tell_many'
    • c67e42fd - 1D: test the more efficient 'tell_many'
    • 9bcde87b - 1D: sort the data when plotting a 'holoviews.Path'
    • 79b6331e - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • 5868fffc - 1D: implement a more efficient 'tell_many'
    • b0e13973 - 1D: test the more efficient 'tell_many'
    • 33cb2800 - 1D: sort the data when plotting a 'holoviews.Path'
    • 0642b997 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Author Maintainer

    I am fairly certain that the tell_many code is 100% correct now.

    However the test doesn't pass because if self._scale[1] > 2 * self._oldscale[1], if I change it to if self._scale[1] > self._oldscale[1] the attributes are identical.

  • Bas Nijholt added 1 commit

    added 1 commit

    • d1955676 - 1D: add 'force' keyword only argument to 'tell_many' for testing purposes and fix the tests

    Compare with previous version

  • Bas Nijholt added 5 commits

    added 5 commits

    • dc50e96e - 1D: implement a more efficient 'tell_many'
    • 44b445a8 - 1D: test the more efficient 'tell_many'
    • 880740c4 - 1D: sort the data when plotting a 'holoviews.Path'
    • 17511d3b - 1D: simplify 'learner.vdim'
    • 65383ac2 - 1D: add 'force' keyword only argument to 'tell_many' for testing purposes and fix the tests

    Compare with previous version

  • Bas Nijholt added 4 commits

    added 4 commits

    • 39f52fd6 - 1D: implement a more efficient 'tell_many'
    • 2090292f - 1D: test the more efficient 'tell_many'
    • 7a375eba - 1D: sort the data when plotting a 'holoviews.Path'
    • 9fdb3e4c - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Author Maintainer

    @jbweston I fixed the issue mentioned in my previous comment. All done now :smile:

  • Bas Nijholt resolved all discussions

    resolved all discussions

  • Bas Nijholt added 4 commits

    added 4 commits

    • 601df656 - 1D: implement a more efficient 'tell_many'
    • 66896b75 - 1D: test the more efficient 'tell_many'
    • dd272368 - 1D: sort the data when plotting a 'holoviews.Path'
    • 39ee5798 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 3 commits

    added 3 commits

    • aedb0895 - 1D: test the more efficient 'tell_many'
    • 6e671e3e - 1D: sort the data when plotting a 'holoviews.Path'
    • 28d277d9 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Bas Nijholt added 3 commits

    added 3 commits

    • 94e97d08 - 1D: test the more efficient 'tell_many'
    • c5b563dc - 1D: sort the data when plotting a 'holoviews.Path'
    • f7f1a99e - 1D: simplify 'learner.vdim'

    Compare with previous version

  • mentioned in issue #106 (closed)

  • Bas Nijholt added 3 commits

    added 3 commits

    • 9b3fb298 - 1D: test the more efficient 'tell_many'
    • d31f408d - 1D: sort the data when plotting a 'holoviews.Path'
    • 580e21d5 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • Joseph Weston
  • Joseph Weston
  • Joseph Weston
  • Joseph Weston
  • Bas Nijholt resolved all discussions

    resolved all discussions

  • Bas Nijholt added 7 commits

    added 7 commits

    • 580e21d5...dc57ba19 - 3 commits from branch master
    • 8bafea3c - 1D: implement a more efficient 'tell_many'
    • d00bde9d - 1D: test the more efficient 'tell_many'
    • 97f7b24d - 1D: sort the data when plotting a 'holoviews.Path'
    • 18618f85 - 1D: simplify 'learner.vdim'

    Compare with previous version

  • assigned to @jbweston

  • Author Maintainer

    @jbweston I made the changes you suggested, thanks for the review.

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading