-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
【PaddlePaddle Hackathon 2】9、为 Paddle 新增 logspace API #40777
Closed
BrilliantYuKaimin
wants to merge
309
commits into
PaddlePaddle:develop
from
BrilliantYuKaimin:logspace
Closed
【PaddlePaddle Hackathon 2】9、为 Paddle 新增 logspace API #40777
BrilliantYuKaimin
wants to merge
309
commits into
PaddlePaddle:develop
from
BrilliantYuKaimin:logspace
Conversation
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
你的PR提交成功,感谢你对开源项目的贡献! |
PR格式检查通过,你的PR将接受Paddle专家以及开源社区的review,请及时关注PR动态。 |
BrilliantYuKaimin
force-pushed
the
logspace
branch
from
March 22, 2022 08:58
5565382
to
95ea530
Compare
) * [Refactor] refactored eager_gen.py PR PaddlePaddle#1 * [Refactor] refactored eager_gen.py PR PaddlePaddle#1 * Refactored version 2 * Added automatic code generation utils * Fixed merge issues
…dle#40737) * [Auto Parallel] gradient merge pass support dist attribute
* Fix rnn, wmt16 docs;test=document_fix * Fix wmt14 docs;test=document_fix * Add more description;test=document_fix
* test=document_fix , fix launch doc * test=document_fix , fix typo
* add align for WorkQueue * add spinlock * merge develop * merge * Add EventsWaiter * Add EventsWaiter * update * Revert "Add EventsWaiter" This reverts commit e206173. * update * update Error MSG * update EventsWaiter * update Co-authored-by: liutiexing <liutiexing@google.com>
…0870) * make vcvars64 and cuda_version can be set in xly pipe * make third_party_path reused by ci and build pipe;test=windows_ci_inference;test=windows_op;test=windows_ci
* Enhance test_eigh_op * Use eigen decomposition to validate eigen values and vectors * Fix that TestEighBatchAPI didn't run the batched input * Enhance test_eigvalsh_op * Align cusolver tolerance to validate eigenvalues * Fix that BatchAPI didn't run the batched input * Add abs for |d_ref| * Remove comment
* [Yaml] Migrate sqrt/square/reciprocal yaml * clean file * fix unittest error
* rename scalar_array to int_array * update cmake * fix conflict * remove useless log
* add CUDA_TOOLKIT_ROOT_DIR option in cmake command * make sure dir in cmake use / rather than \
* back fl * delete ssl cert * . * make warning * . * unittest paral degree * solve unittest * heter & multi cloud commm ready * . * .
* fix error; test=develop * update * close some yaml * fix backward attrite error; test=develop * add div test * polish code; test=develop * update * update * fix bug * update bitwise code; test=develop * update * update * fix some bug * update * revert cmakelist * fix optional bug; * fix bug * fix bug; * add backward test * open bn * update * update * revert eager_gen * polish code * fix topk error * update * update * fix bug; * move label smooth, nll loss * revert topk * fix topk label smooth bug; * remove batch_norm * remove topk * change flip infer meta * fix flip bug * update yaml * close abs * fix histogram bug * fix histogram bug * add abs * fix histogram kernel * remove expand
…le#41131) * add several yaml * polish strided slice kernel & add yaml * reorder yaml * add several yaml * revert yaml config change * resolve conflict * Update test_strided_slice_op.py
操作失误,重新提PR至此:#41261 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
PR types
New features
PR changes
APIs
Describe
增加了paddle.logspace。具体地,
paddle.logspace(start, stop, num, base)
能产生一个以base**start
为首项、以base**end
为末项、共有num
项的等比数列。Issue:#40326
设计文档:PaddlePaddle/community#56