-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the capability to do adjoint transforms #633
Draft
mreineck
wants to merge
14
commits into
master
Choose a base branch
from
add_adjoint
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
1180e27
first version; adjoint still completely untested
mreineck e7bd659
add Python interface; fix a few bugs
mreineck fe0dcdc
add tests; add overlooked file
mreineck e148935
use assertions that are more helpful in cse of errors
mreineck b7d7ce1
test commit to see if tests pass with incresed tolerance for adjoint …
mreineck f54a1dd
increase overall requested plan accuracy for adjoint type 3 transform…
mreineck d50a912
be more clever about memory consumption
mreineck a4c313f
document new parameters for execute_internal()
mreineck 2692658
Merge remote-tracking branch 'origin/master' into add_adjoint
mreineck eafcf3e
update CHANGELOG
mreineck 7f19185
merge master
mreineck 0fa2a4e
more comments
mreineck da3df92
small tweak
mreineck ec969b5
merge master
mreineck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,7 +154,7 @@ def verify_type1(pts, coefs, shape, sig_est, tol): | |
|
||
type1_rel_err = np.linalg.norm(fk_target - fk_est) / np.linalg.norm(fk_target) | ||
|
||
assert type1_rel_err < 25 * tol | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Switching from |
||
np.testing.assert_allclose(type1_rel_err, 0, rtol=0, atol=25*tol) | ||
|
||
|
||
def verify_type2(pts, sig, coefs_est, tol): | ||
|
@@ -172,7 +172,7 @@ def verify_type2(pts, sig, coefs_est, tol): | |
|
||
type2_rel_err = np.linalg.norm(c_target - c_est) / np.linalg.norm(c_target) | ||
|
||
assert type2_rel_err < 25 * tol | ||
np.testing.assert_allclose(type2_rel_err, 0, rtol=0, atol=25*tol) | ||
|
||
|
||
def verify_type3(source_pts, source_coef, target_pts, target_coef, tol): | ||
|
@@ -191,4 +191,4 @@ def verify_type3(source_pts, source_coef, target_pts, target_coef, tol): | |
|
||
type3_rel_err = np.linalg.norm(target_est - target_true) / np.linalg.norm(target_true) | ||
|
||
assert type3_rel_err < 100 * tol | ||
np.testing.assert_allclose(type3_rel_err, 0, rtol=0, atol=100*tol) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm increasing
eps
from 1e-6 to 1e-5 here, because I get occasional failures with single precision otherwise. Given that 1e-6 is uncomfortably close to machine epsilon, I'm not too worried about this change.