This repository was archived by the owner on Jul 1, 2023. It is now read-only.
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.
Add Complex Numbers #129
Add Complex Numbers #129
Changes from 21 commits
ee905cf
9c2d11b
346b9b7
d5e78cf
de575fe
683366d
01efbd9
23870cb
fdd1c50
3e1d56e
1e5758a
e58f400
9e62906
4ac97e3
3350c21
85b43bb
46e68c9
dc4930c
e4b7106
ae53238
09c53d0
1856a2f
90bff29
a7d88bb
57bca41
40522c6
4e2053a
80cab5c
b5cf071
1b4c33a
33b178f
59989bd
4e01fed
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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 don't think this will type infer correctly given that there is no contextual complex type
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.
Ahh yes you're right I would need to add more context like
let x: Complex<Double> = 2 + 3 + .i
I added this documentation back when @rxwei pointed out that I should keep the original header by Xiaodi. However, I think I skimmed over to quickly when I read the following:
in the google third-party info (and also I didn't closely read the original header and missed this typo you caught).
I'll try to keep most of the documentation, however, looking over it, some of it may not be relevant to the current implementation since certain functions are specific to Xiaodi's library.
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 think you should add an additional Additional Consideration linking to https://github.com/HIPS/autograd/blob/master/docs/tutorial.md#complex-numbers and explaining that we are using that convention.
It's a very non-obvious choice about how to do things. The first time I thought about complex differentiation, I thought that we should only define derivatives for holomorphic functions, but that convention lets us define derivatives for all functions and that link explains why that's a good thing to do.
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.
Agreed I added the following:
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.
Have you tried making
real
andimaginary
differentiable? If you do that, then the compiler will in principle be able to automatically compute derivatives for all the complex operations because they just takereal
andimaginary
parts, then perform differentiable operations on those, then construct a new complex number (which is also a differentiable operation)!In practice, the compiler can't quite derive these yet because most of the complex operations are implemented in terms of mutation and control flow that the compiler can't handle. But soon it should be able to handle it!
It would be very interesting to add some tests that define a few operations in ways that autodiff can handle, and then see if autodiff computes the expected derivatives for those. e.g.
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 believe derived conformances already made stored properties differentiable.
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 did in that when I mark a method as differentiable, I put the requirement that
@differentiable(vjp: _vjpFunc where T: Differentiable)
. I didn't requirereal
andimaginary
to be differentiable where I define theComplex
struct, because when we are to differentiate the standard library's version of complex numbers, we won't be able to change it, and additionally it will restrict Complex numbers to what they can be more than what the standard library will likely have.I'll give it a shot! 😄
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 think this logic would read a lot nicer if the body of this 'if' were pulled out of line into its own function
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.
True it could explain the logic behind this part of the function better. I'll give this a shot Sunday night!
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 pretty sure this only need to run if 'recalculate' is false.
The code structure could be cleaned up (and recalculate eliminated?) if pulled out of line I think.
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.
Similar to the comment above, I'll take a look at this logic more closely and see what I can pull out, what code I can simplify, and also explain with comments Sunday night.
As background, I kept this code the way it was just like in the NumericAnnex library. It had written a lot of tests, so I did a bit of a blind trust on the implementation of this logic. Additionally, since I was mainly looking at the automatic differentiation aspect of complex numbers, I didn't spend much time on the implementation of the basic operators.
However, since this will be a part of our repo, I see that it's good to make sure all our code is well documented and explained.