- 13 7月, 2017 4 次提交
-
-
由 Yancey 提交于
* Server recovery from checkpoint
-
由 helinwang 提交于
Add go testing into cmake
-
由 Helin Wang 提交于
-
由 Helin Wang 提交于
-
- 12 7月, 2017 29 次提交
-
-
由 Qiao Longfei 提交于
Add unit test for OpKernel
-
由 Yu Yang 提交于
Add GetEigenDevice To DeviceContext.
-
由 qijun 提交于
-
由 gangliao 提交于
FIX: add -lrt for link
-
由 qijun 提交于
-
由 qijun 提交于
-
由 gangliao 提交于
-
由 qijun 提交于
-
由 Tao Luo 提交于
fix pybind compile question
-
由 qijun 提交于
-
由 Luo Tao 提交于
-
由 qijun 提交于
-
由 qijun 提交于
-
由 Yu Yang 提交于
OperatorWithKernel
-
由 Yu Yang 提交于
* User can register OpKernel to its Ops. The OpKernelMap saved in OperatorWithKernel. Each Op which inherits OperatorWithKernel will use `OpKernel::Compute` instead of Run.
-
由 qijun 提交于
-
由 qijun 提交于
-
由 fengjiayi 提交于
Remove Dim::contiguous and Dim::contiguous_strides
-
由 fengjiayi 提交于
add tensor interfaces
-
由 qijun 提交于
-
由 qijun 提交于
-
由 fengjiayi 提交于
Paddle's data block is row-major order, while Dim::contiguous and Dim::contiguous_strides are based on column-order. So remove them to prevent misuse.
-
由 fengjiayi 提交于
-
由 qijun 提交于
-
由 QI JUN 提交于
Refine CUDA Related libraries
-
由 Tao Luo 提交于
Error fix in doc on Write New Layers
-
由 武毅 提交于
Fix new remote updater for go pserver
-
由 Qiao Longfei 提交于
Add OperatorBase. issue: https://github.com/PaddlePaddle/Paddle/issues/2790 Paddle design the Operator with Kernel. OperatorBase has no type and device information when create, One operator can have multiple kernels, Operator will choose a kernel to run according to context. The kernel should be bind to Operator before or during Operator running.
-
由 zhanghaichao 提交于
-
- 11 7月, 2017 7 次提交
-
-
由 fengjiayi 提交于
-
由 fengjiayi 提交于
1. Add member variable 'DDim dims_' and a getter function 'dims()'. 'dims' is supposed to hold tensor's shape during Op::InferShape. 2. Remove 'mutable_data' which use default Place. User must specify a explicit Place when call 'mutable_data'. 3. A PlaceHolder may be shared by more than one tensor, and some of them may be the others' slices. So we add a new member variable 'offset_' for Tensor, which is used to show the byte offset between PlaceHolder::ptr_ and where tensor's data really begins. 4. Add functions 'ShareDataFrom' and 'Slice' for Tensor. TODO: Tensor needs a 'CopyFrom' function.
-
由 qijun 提交于
-
由 Yu Yang 提交于
* Move static variable defined in .cc We cannot define static variable in .h, because it will be multi-defined errors. Also fix some cpp syntax, like: * Prefer to use algorithm not manually for-loop, to make code more readable. * Remove unused `()`. * Enforce take a bool. It is no need `xxx==true`. * Use range-based for-loop iterator from op_desc.attrs * Fix a protential static variable init order error
-
由 Yu Yang 提交于
* Expose paddle.framework by pybind11 * Export paddle.framework.{Scope, Variable} to paddle.v2.framework.core. * See python/paddle/v2/framework/tests/test_scope.py for Python usage * See paddle/pybind/pybind.cc for C++ bind code. * add copyright
-
由 gongweibao 提交于
add TaskFail interface
-
由 Yu Yang 提交于
-