-
Notifications
You must be signed in to change notification settings - Fork 3
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
46.recovery #131
46.recovery #131
Conversation
…ulation of algorithm performance study
@sajith never mind. I will resolve the problems first, then ask you to review again. |
I think I should wait after you tag the main to 2.1.0 as you planned. |
close for now, wait and redo it after tag 2.1.0 |
@YufengXin I don't think you need to hold this off, because the new code does not alter existing PCE APIs. You should be able to do something like this: $ git fetch origin
$ git merge origin/main -m "merge main"
$ pip install black isort tox
$ black . # format code
$ isort . # sort imports
$ tox # run tests If everything goes well, update this branch, and then re-open this PR:
That should work, from my quick testing. Please let me know if you need anything else. |
Sure. I'll work on it. thanks. BTW, this instruction should go to that "DeveloperGuidance" doc. -:) I used to use "git rebase", I'll start to use git merge..... |
When working with Git and GitHub, there are many non-obvious things to try when things do not go as expected. It is usually better to follow Git or GitHub documentation, than trying to document it ourselves. GitHub's PR diffs (sometimes? always?) seem confusing when using As for other things (code formatting and testing), yes, we should get that stuff documented! |
@sajith I restructured the pce code a little bit in which I created a new "simulation" sub fold where I moved all the 'research/simulation' scripts/examples into. They are not used in sdx operation. This is a precursory to my next commit addressing protection TE optimization that would happen later.
I rebased it on the current main. I am somehow puzzled by GitHub saying it's '100 commits behind main'. Maybe I used the git command incorrectly.
Please review and make sure it doesn't affect anything running. Thanks.