Commit Graph

1154 Commits (d2b10cc0b1b6a3267698f0d63d721ca99dc6ecf6)

Author SHA1 Message Date
qijun 1f5192a27b fix executor gpu unittest
7 years ago
kexinzhao 087addaa76 Merge pull request #4558 from kexinzhao/adagrad_op
7 years ago
Kexin Zhao 78f4c803f3 change learning rate and fix format
7 years ago
qijun 39f75a13a4 Merge remote-tracking branch 'baidu/develop' into executor_impl
7 years ago
qijun bbceb72398 refine some codes
7 years ago
qijun 48b080db9f ensure global BuddyAllocator is initialized before global Scope
7 years ago
Kavya Srinet f52cdaa0ce Updated RMSProp to have learning rate as an input and work with GPU
7 years ago
Kavya Srinet 0336304176 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into rmsprop
7 years ago
Kavya Srinet 154a6ed29c Implementing tanhshrink operator
7 years ago
sidgoyal78 db77937ea4 Fix learning_rate usage for momentum
7 years ago
qijun 45c4dcaabb add fetch operator
7 years ago
kavyasrinet 3e2be065b9 Merge pull request #4604 from kavyasrinet/activations
7 years ago
qijun 20725f2d52 add executor feed operator test
7 years ago
sidgoyal78 c10da26cf5 Modify implementation
7 years ago
Abhinav Arora 828c5b3e1d Adding Adadelta optimization operator (#4576)
7 years ago
Kavya Srinet 60af56c1b8 Added Leaky Relu activation
7 years ago
qijun 623848afa1 add feed operator
7 years ago
Yi Wang 1172f24929 Merge pull request #4590 from wangkuiyi/paddle_only_cpu
7 years ago
qiaolongfei 8ebc31d935 optimize the dsize
7 years ago
qiaolongfei 775c60246b remove using in sgd header file
7 years ago
Yu Yang 2594a50245 Polish code
7 years ago
Yu Yang c4effc7d2d Fix CI Test
7 years ago
qiaolongfei ee7b3ed09e use EigenScalar to get learning_rate from GPU device
7 years ago
Yi Wang 4558807c48 Use PADDLE_WITH_CUDA instead of PADDLE_WITH_GPU
7 years ago
Yi Wang e79d2f1b65 Merge pull request #4584 from reyoung/feature/change_macro_paddle_no_gpu
7 years ago
Kavya Srinet fa12e51675 Adding the default attribute test case
7 years ago
Kavya Srinet 94855f4af0 Fixed changes proposed in the review
7 years ago
Yu Yang e119177a8c Use unique_ptr
7 years ago
Yu Yang 84500f9487 Change `PADDLE_ONLY_CPU` to `PADDLE_WITH_GPU`
7 years ago
Abhinav Arora eed2c1e1d6 Changing SGD inputs and outputs to conform to Operator naming convention (#4586)
7 years ago
Abhinav Arora 324876bbbf Changing learning rate from type Input(float) to Input(tensor) (#4578)
7 years ago
Yu Yang 14a59d2e6b Merge branch 'develop' of github.com:baidu/Paddle into feature/grad_reg_mechanism_cont2
7 years ago
zchen0211 94b94e5b68 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
7 years ago
zchen0211 2d876b8643 gather scatter fix according to google style
7 years ago
sidgoyal78 d28b3094dd Add momentum operator
7 years ago
Abhinav Arora 42e7fe05a2 Changing learning rate from attribute to input(float) (#4568)
7 years ago
Kavya Srinet 163d287143 Made learning rate the input
7 years ago
Kexin Zhao d1de7ec630 Change learning rate from attribute to input tensor
7 years ago
zchen0211 2ccaec4f57 gather scatter cond
7 years ago
Yu Yang 46c551b299 Complete Register Gradient in compile time
7 years ago
Kavya Srinet 61c03f9d59 Adding the implementation for rmsprop operator
7 years ago
Yu Yang ff1bfdedc9 Fix CRLF in sum_op.cu
7 years ago
Yu Yang adec0d30fe Simplify SumOp Kernel
7 years ago
zchen0211 58174b12f7 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into develop
7 years ago
zchen0211 84b8baf196 gather scatter with cuda streams
7 years ago
Kexin Zhao 05cbd4daac fix format
7 years ago
qiaolongfei cde542e652 optimize auto
7 years ago
qiaolongfei 6b051b651a optimize code
7 years ago
Kexin Zhao 1ac654a69f Implementing the Adagrad optimizer step operator
7 years ago
qiaolongfei 32f5c9dd93 recurrent_op pass the unit test
7 years ago
zchen0211 15941dbd8c solve conflict for cond_op and scatter
7 years ago
qiaolongfei 7163dd0413 revert code
7 years ago
chengduoZH 14b2c98f90 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_maxpool_withIdx_only
7 years ago
Yu Yang 0900aedfa0 Merge pull request #4514 from reyoung/feature/remove_add_op
7 years ago
Yancey1989 0028459bb0 update
7 years ago
Yancey1989 927767b6aa add some checking
7 years ago
chengduoZH bb33c2b3a5 fix kernel func
7 years ago
chengduoZH 2ed56df1e6 remove conflict
7 years ago
chengduoZH bee95fc891 fix code format and some bug
7 years ago
Yancey1989 a35e82a649 Merge branch 'develop' of github.com:PaddlePaddle/Paddle into seqconcat_op
7 years ago
chengduo 4f5491b2b4 Merge pull request #4146 from chengduoZH/Add_pool_op
7 years ago
Yu Yang aa52fa1c64 Merge pull request #4491 from reyoung/feature/stable_lstm
7 years ago
chengduoZH 2d8a5b97cc fix unit test
7 years ago
Qiao Longfei 7fe0297e64 remove Runtime InferShape for cond op (#4518)
7 years ago
Yu Yang 762a99cc06 Remove add_op since it can be replaced by sum_op
7 years ago
Yu Yang ae4b7fd575 Merge pull request #4485 from reyoung/feature/BetterActivationKern
7 years ago
Yancey1989 be3fa7926e add sequence concat op
7 years ago
zhouxiao-coder 601e2317fd update to latest
7 years ago
zhouxiao-coder 4436ba0c56 elu: Optimize gradient calculation;Add more comments
7 years ago
zhouxiao-coder a815d6abcf elu: Optimize gradient calculation;Add more comments
7 years ago
chengduoZH df59889984 remove conflict
7 years ago
Luo Tao bb7f555803 remove rowwise_add_op
7 years ago
Luo Tao 884e31a59b add interpolation op
7 years ago
Liu Yiqun 8bafdda0ad Merge branch 'develop' into core_add_sequence_softmax_op
7 years ago
Cao Ying 7cc5ae9999 Merge pull request #4492 from QiJune/refine_some_functors
7 years ago
qijun b611a479fc fix gpu build error
7 years ago
chengduoZH e1e3859e88 remove custom attr checker and fix code format
7 years ago
guosheng a53191f12a Add norm_op
7 years ago
Yu Yang a8c6ce9b4d Merge branch 'develop' of github.com:baidu/Paddle into feature/BetterActivationKern
7 years ago
qijun 84ff7e9784 refine SoftmaxFunctor
7 years ago
Yu Yang f60f0eae11 Using double precision to stablize lstm gradient check
7 years ago
Abhinav Arora 0c3eee09ff Implementing the SoftSign activation operator
7 years ago
qijun 79def5e634 refine CrossEntropyFunctor
7 years ago
qijun c634a8480a add SetConstant method in math_function.h
7 years ago
zchen0211 78808b2091 1 api
7 years ago
Yu Yang 337b7ebe77 Unify Activation functions and simplify register code
7 years ago
zchen0211 b851515b16 merge new op grammar
7 years ago
zchen0211 88a8eedda1 scatter gather gpu
7 years ago
Yu Yang 87da154226 FIx sigmoid_xe_with_logits_op compile
7 years ago
Yu Yang 63469daede Merge branch 'develop' of github.com:baidu/Paddle into feature/make_paddle_support_double
7 years ago
Yu Yang b9c8637238 Fix compile
7 years ago
Abhinav Arora b9336e6f8c Adding support for the sigmoid_cross_entropy_with_logits operator (#4448)
7 years ago
Yu Yang fb6a48c62d Merge branch 'develop' of github.com:baidu/Paddle into feature/make_paddle_support_double
7 years ago
chengduoZH 6326c40d27 Add max pool with index
7 years ago
Yibing Liu 4db50fbcdd adapt to the new infershape interface
7 years ago
Guo Sheng ecef2e6b97 Merge pull request #4086 from guoshengCS/add-ReduceOp
7 years ago
Yibing Liu e303897f35 Merge branch 'develop' of upstream into margin_rank_loss_op_dev
7 years ago
Liu Yiqun 03897f251d Finish the SequenceSoftmaxGradKernel, using SoftmaxGradFunctor.
7 years ago
Liu Yiqun 05ed8ee8ab Add SoftmaxGradFunctor, and use SoftmaxGradFunctor in softmax_op instead.
7 years ago
Yibing Liu bc2e26ee1b refine comments and clean code in marigin_rank_loss_op
7 years ago
Yu Yang 21f63ec223 Merge pull request #4458 from reyoung/feature/compile_time_infer_shape
7 years ago
Yancey d7db15f3e5 Use StridedMemCpy in Concat/Split Kernel (#4188)
7 years ago
guosheng e33b411221 Adapt reduce_op according to up-to-date dev
7 years ago
Yu Yang ae3dca770c Fix CI
7 years ago
guosheng be58c6327d Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-ReduceOp
7 years ago
Yu Yang 6196209478 Remove OperatorBase::InferShape
7 years ago
Yu Yang f1913d4697 Change registry, test register double kernel
7 years ago
Yu Yang 2c05465d2f Fix unit-tests
7 years ago
Yu Yang 3a5693e0a8 Add Skeleton of Double support
7 years ago
Yu Yang e315da970c Merge branch 'develop' of github.com:baidu/Paddle into feature/unify_clang_format
7 years ago
chengduoZH 3c0f079333 remove conflict and fix InferShape function
7 years ago
Luo Tao c53d214205 fix compiler warning from MKLDNNLayer and so on
7 years ago
whs 3e96242909 Merge pull request #4422 from wanghaoshuang/fix_clip
7 years ago
wanghaoshuang 1ad4efa8de Fix comments
7 years ago
wanghaoshuang 6da5670f62 revert deleting ShareLoD
7 years ago
wanghaoshuang 028973815b Fix InferShape of clip op.
7 years ago
qiaolongfei 729b2152ae add include op_registry.h to elementwise_op_function.h
7 years ago
qiaolongfei abdcd8282e Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into reduce-elementwise-warning
7 years ago
Liu Yiqun ce3171f3c4 Merge branch 'develop' into core_add_sequence_softmax_op
7 years ago
chengduoZH 4b06d8db91 fix globalPooling type (int => bool)
7 years ago
qiaolongfei 325ee63746 fix SoftmaxWithCrossEntropyOp
7 years ago
guosheng 99b8dbb14f Merge branch 'develop' of https://github.com/PaddlePaddle/paddle into add-ReduceOp
7 years ago
qiaolongfei 0fa4b985a9 split elementwise_op.h into two header files
7 years ago
Liu Yiqun c8fc6037fd Merge branch 'develop' into core_add_sequence_softmax_op
7 years ago
Yiqun Liu 29cb85634c Merge pull request #4144 from lcy-seso/softmax_with_cross_entropy_op
7 years ago
caoying03 97509b68e7 cross entropy as a functor to avoid duplicated codes.
7 years ago
Yu Yang 60857f4909 Unify clang-format and add some missing clang-format
7 years ago
Qiao Longfei 9a9d50a6ee Refactoring InferShape (#3946)
7 years ago
Yibing Liu dc186af729 Merge branch 'develop' of upstream into margin_rank_loss_op_dev
7 years ago
Yibing Liu 367a54e08c Merge pull request #4360 from kuke/multiplex_modify_dev
7 years ago
Yibing Liu e9dbc85b3d to trigger ci for multiplex_op
7 years ago
chengduoZH 30a586df0c Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_pool_op
7 years ago
caoying03 40aee48a80 follow comments.
7 years ago
caoying03 3d77360b89 add negative clipping for softmax.
7 years ago
chengduoZH dfc8d3c1c1 Fix (According to the review)
7 years ago
caoying03 360bde9a70 Merge branch 'develop' into softmax_with_cross_entropy_op
7 years ago
guosheng 477a6a0978 Refine reduce_op, follow comments and remove ReduceGradEigenFreeKernel
7 years ago
Cao Ying 7d65321620 Merge pull request #4237 from lcy-seso/optimize_cross_entropy_kernel
7 years ago
caoying03 000d75116f fix backward op.
7 years ago
Yibing Liu 58ac8f46b8 apply more general dims for multiplex_op
7 years ago
Yibing Liu 089f8e2d37 Merge branch 'develop' of upstream into multiplex_modify_dev
7 years ago
caoying03 8b8ad6b164 fix implementations of supporting soft labels.
7 years ago
chengduoZH f6e69d7412 fix maxpool backward functor
7 years ago
Zhuoyuan f698a49ce3 Merge pull request #4240 from zchen0211/develop
7 years ago
chengduoZH 905a462d3c Merge branch 'fix_maxpool_backward_functor_temp' into Add_pool_op_temp
7 years ago
chengduoZH 8c478b36e2 fix Atrr check
7 years ago
Yibing Liu 236af56612 separate index tensor from candidate tensors in multiplex_op
7 years ago
chengduoZH b72854389e Fix (According to the review)
7 years ago
chengduoZH 9b1431b8d9 fix maxpool backward functor and add unit test
7 years ago
Yibing Liu f94109d428 replace LoDTensor in multiplex_op
7 years ago
Guo Sheng e114aad882 Merge pull request #4238 from guoshengCS/add-gemm-with-step
7 years ago
qiaolongfei 9301d3b5ea add namespace and reduce warning
7 years ago
Liu Yiqun 9f32c8d896 Merge branch 'develop' into core_add_sequence_softmax_op
7 years ago
Liu Yiqun 12f2b8eb07 Correct the forward of sequence_softmax_op.
7 years ago
Yibing Liu 47fbc96fa1 Merge pull request #4064 from kuke/multiplex_op_dev
7 years ago
Yibing Liu fb52bc6e12 revert code layout in multiplex_op
7 years ago
Tao Luo 01bec25734 Merge pull request #4193 from luotao1/seq_pool
7 years ago
caoying03 bb58b63b6c Merge branch 'develop' into softmax_with_cross_entropy_op
7 years ago
guosheng 1295e5ef54 Refine reduce_op unit test and add newline at end of file
7 years ago
guosheng 8b3bf28c6b Refine reduce_op and follow comments
7 years ago
guosheng 630273d453 Fix reduce_op according to CI log
7 years ago
guosheng c8d877195b Revise the reduce_op unit test accordingly
7 years ago
guosheng 3994e91a67 Add reduce_op
7 years ago
caoying03 201c2bcf20 delete redundant codes.
7 years ago
caoying03 6735585b0f fix cpu kernel with soft labels.
7 years ago
chengduoZH b0a47b149d remove CHECK in *.cu
7 years ago
Yibing Liu 7620efdf1c combine gpu&cpu code in multiplex_op
7 years ago
Zhuoyuan 5b7fd00d1f Merge pull request #4280 from Superjom/feature/recurrent_op_backward_fix
7 years ago
fengjiayi 948d1d782b Fix progma_once error
7 years ago
superjom b545b5b86b Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
7 years ago
caoying03 30bfaab36e Merge branch 'develop' into optimize_cross_entropy_kernel
8 years ago
caoying03 141b8dbce6 update the backward kernel.
8 years ago
gongweibao f99841dd2a Elementwise operator. (#4139)
8 years ago
chengduoZH f2ccc11f59 fix pool doc (pool_op.cc)
8 years ago
qingqing01 7831b1d9ea Merge branch 'develop' into attr_bool
8 years ago
chengduoZH c2c2d610a4 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into Add_pool_op
8 years ago
dangqingqing 0dce16a697 Use bool type for attr in cross_entropy_op.
8 years ago
chengduoZH 0417e4e4bf fix framework::LoDTensor => Tensor
8 years ago
Yibing Liu 85a5d38446 Merge branch 'develop' of upstream into multiplex_op_dev
8 years ago
Luo Tao 244efd6b48 refine doc of sequence_pool_op
8 years ago
chengduoZH 6f61b5df7d fix unit test
8 years ago
Luo Tao 0449b9c89e Merge branch 'develop' into seq_pool
8 years ago
chengduoZH 84a2512b90 fix parameter name and function define
8 years ago
Yibing Liu 756af4e73a regulate comments in margin_rank_loss_op
8 years ago
dangqingqing 58e3ad0a70 Fix conflicts.
8 years ago
caoying03 f1d5fb3b9a support soft labels.
8 years ago
Yibing Liu 6b3e9ccb3a pass unit test for margin_rank_loss_op
8 years ago
Yibing Liu 2f12256186 Merge branch 'develop' of upstream into margin_rank_loss_op_dev
8 years ago
dangqingqing 6e2782e958 update to develop branch.
8 years ago
caoying03 a2a0d6f82a Merge branch 'develop' into softmax_with_cross_entropy_op
8 years ago
chengduoZH 3416f5e0f8 fix function define
8 years ago
Liu Yiqun 4d9293940b Merge branch 'develop' into core_add_sequence_softmax_op
8 years ago
chengduoZH a8477381ac Add pooling2d(max, ave) and pooling3d(max, ave) Op
8 years ago
hedaoyuan 0ee967b513 Merge pull request #4288 from hedaoyuan/fix_bug
8 years ago
QI JUN 8c3b8af31e Merge pull request #4071 from QiJune/activation_ops
8 years ago
hedaoyuan c42e2049a2 Refine code.
8 years ago
hedaoyuan bb546cf13e Bug fix.
8 years ago
hedaoyuan 659f2f71ac Bug fix for get device_context.
8 years ago
Yibing Liu d827359c71 Merge pull request #4098 from kuke/rank_loss_op_dev
8 years ago
whs da2aabb628 Merge pull request #3906 from wanghaoshuang/crop_op
8 years ago
superjom 27aaee1181 Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
8 years ago
Yibing Liu 1f6b90904a fix a typo in rank_loss_op
8 years ago
Yibing Liu cf4b2db758 change the dims of input of rank_loss_op
8 years ago
wanghaoshuang 8b6fda6fd8 move stride function to ddim.h
8 years ago
Yibing Liu 79c2d90a7f add margin_rank_loss_op
8 years ago
Liu Yiqun f14a7966b0 Initialize the sequence softmax operator.
8 years ago
whs e53dc8a2e4 Merge pull request #3937 from wanghaoshuang/clip_op
8 years ago
dangqingqing 36aeb30d12 Remove LoDTensor in some operators' InferShape and refine ShareLoD function.
8 years ago
superjom 903cee9303 clean code
8 years ago
X.Dragon c003895c1c Merge pull request #3920 from NHZlX/op_transpose
8 years ago
superjom 0da8133224 Merge branch 'develop' of github.com:PaddlePaddle/Paddle into feature/recurrent_op_backward_fix
8 years ago
superjom 6a0c342874 make RecurrentOp's backward work
8 years ago
hedaoyuan 7a891a3321 Merge pull request #4042 from hedaoyuan/conv_op
8 years ago
Yan Chunwei b5e67fce70 RNNOp remove alias (#4274)
8 years ago
wanghaoshuang 9569255a0f Fix ptr type
8 years ago
wanghaoshuang bc632df822 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into crop_op
8 years ago
wanghaoshuang 68b5e5bf85 Use stridecpy instead of CUDA kernel
8 years ago
wanghaoshuang 12440509cc Fix some inssues
8 years ago
wanghaoshuang c7b6d2c46d Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
8 years ago
zchen0211 757c32f20b lstm unit gpu
8 years ago
superjom 68399ab921 Merge remote-tracking branch 'origin/rnn-backward-python' into feature/recurrent_op_backward_fix
8 years ago
zchen0211 2b10d322e5 lstm kernels
8 years ago
superjom 075e0e3c5d Merge branch 'develop' of github.com:PaddlePaddle/Paddle into rnn_remove_alias
8 years ago
superjom 3c29224ef3 remove alias
8 years ago
qiaolongfei a7a66b80f7 move OpProtoAndCheckerMaker from operator to op_proto_maker
8 years ago
Yu Yang 3fb0b6e67b Renamed to strided_memcpy and prettify unittests
8 years ago
Yu Yang bda67d9d4b Add TensorCopy method
8 years ago
zchen0211 7883227716 lstm
8 years ago
Qiao Longfei b19a829627 Merge pull request #4217 from jacquesqiao/add_op_proto_maker
8 years ago
Yu Yang 2e38044fc9 Merge pull request #4205 from reyoung/feature/tensor_copy
8 years ago
zchen0211 334c84526b lstm unit
8 years ago
guosheng 9ffa79cd91 Add gemm with stride
8 years ago
caoying03 a3a8a0900d optimize cross entropy kernel by using reduce.
8 years ago
Yibing Liu 9da5192f77 adapt multiplex_op to the dev of framework
8 years ago
Yang yaming 51f1148921 Merge pull request #3987 from pkuyym/fix-3923-c
8 years ago
dangqingqing 3ec48480af Fix bug
8 years ago
Yibing Liu 18dc201bd9 merge multiplex_op with the latest upstream
8 years ago
dangqingqing 39cf2e217d update to develop branch.
8 years ago
yangyaming bbd6e09c22 Using LoDTensor for output.
8 years ago
dangqingqing b65709e403 Share LoD between input and output of each opeators.
8 years ago
Yibing Liu ece329100a refine rank_loss_op
8 years ago
chengduoZH 9e7c0b5ef7 Add pooling2d(max, ave) and pooling3d(max, ave) functor
8 years ago
yangyaming 308ce9ac55 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3923-c
8 years ago
yangyaming 4e3ba65f19 Refine doc.
8 years ago
yangyaming 12596a16ec Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into fix-3789
8 years ago
xzl 1792e58f20 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into op_transpose
8 years ago
xzl 0cd9b8c0aa modify the input\output name to X\Out
8 years ago
wanghaoshuang 1fdad1a60a Update transform invocation
8 years ago
Yibing Liu f2cfa32411 Merge branch 'develop' of upstream into rank_loss_op_dev
8 years ago
wanghaoshuang 3f3848cdf7 Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into clip_op
8 years ago