-
Notifications
You must be signed in to change notification settings - Fork 13
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
Check apps in an umbrella project #138
Conversation
d833587
to
135eab9
Compare
Hi @luk-pau-es, I've looked through this branch and it looks good to me for the most part -- I added some more changes on top of #124 since you branched off that MR, which I would like to be added here as well. I added all those changes in one commit on top of your branch, here: japhib@406c7f6 Mind cherry-picking it? |
…ing/disabling Gradient checks
…ing/disabling Gradient checks
…ing/disabling Gradient checks
6b08bc6
to
7e8886c
Compare
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.
It's great! Tremendous effort, @japhib and @luk-pau-es, making this happen in the first place and making sure both PRs finally converged 🎉🥳
Thanks for all your help @luk-pau-es @erszcz ! |
This branch is based on: #124
What was done:
Issue of the bug:
On file
lib/gradient.ex
we call functionmaybe_specify_forms/2
on line 46. Before that (line: 45) there is call to functionput_source_path/2
. Bug cause was thatmaybe_specify_forms/2
also called thisput_source_path/2
which effectively aded source paths 2 times. I have verified thatmaybe_specify_forms/2
is called only from that one specific location and removed redundant call toput_source_path/2
from inside it.IMPORTANT
Right now the pipeline is all green but I need to investigate more about it as this is effect of re running failed jobs multiple times.