forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
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
update #9
Merged
Merged
update #9
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
Sigmoid: Out = Sigmoid(X) SigmoidGrad: DX = DOut*(1-Out)*Out [This Patch] Out DOut -> SigmoidGradGrad -> DOutNew DDX DDOut DDOut = (1-Out)*Out*DDX DOutNew = (1-2*Out)*DOut*DDX
* optimize OP's compilation time, test=develop * add more op and run ci test, test=develop * CUDA Kernel register in cc file, test=develop * fix macros, test=develop * fix undefined symbol error, test=develop * fix compilation error and undefined symbol, test=develop * fix compilation error on Windows, test=develop * fix compilation error on Windows, test=develop
* refine ~npuOpRunner * implement destructor and forbid copy * use reference to avoid copy * use const reference * relax adam precision * fix top_k
* modify matmul Op to complex template types * remove complex64/128 head file
…y API error msg (#33003) * Unify all external API error message mechanism and enhance third-party API error msg * fix some comment * fix some comment
* support ssd in PsCore * remove log * remove bz2 * defalut value * code style * parse table class * code style * add define
* modify kron OP to complex template types * modify reshape, slice, trace, transpose OPs to complex template types * modify to complex template types in eigen slice files * change to complex template types for pad.cc and pac.cu * format code style
* modify API nn.Bilinear's doc, test=develop * speed up paddle.add paddle.nn.Linear, test=develop * fix bug, test=develop
…entityFunctor struct (#33164)
* run pre-commit * use HOST or DEVICE instead of HOSTDEVICE in implementation of lgamma op * add test for fp32 * add lgamma to op_threshold_white_list * add cuda kernel for lgamma kernel * modify numeric grad delta * fix small English issue * change LaunchElementwiseCudaKernel to LaunchSameDimsElementwiseCudaKernel
#33153) * Add GLIBCXX_USE_CXX11_ABI flag * fix typo * fix typo
* modify to complex template types for fill_constant op * modify to complex template types for py_layer, strided_slice and reduce_sum_op.part
* add more conditions * dynamic shape * ut * correct contidions * commnent * remove rebandadnt op type * remove rebandant if
* support params groups, test=develop * simplify updating opt attr * update according to review
* improve group norm cpu precision and performance * add unit test to group norm
* enhance error message for conv * fix ci coverage
…33195) * replace and remove complex64/128 types in custom OP and other files * fix custom_tensor_test fail bug * fix custom_conj_test fail bug * fix dispatch_test_op build fail bug
* download_verify * checksum
* Align download_filename with cached_filename
* fix syncbn
* fix spawn default nprocs get error * polish error message
* add trt convert op: reshape * reshape * fix * input: Shape,ShapeTensor * Add some comments
* fix path error on windows when precision switch is turn on * fix error * Update get_pr_ut.py fix format error * Update get_pr_ut.py
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
PR changes
Describe