MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The Params contains the base parameters used in multi-GPU training. More...
Public Member Functions | |
Params (Solver< T > root_solver) | |
The Param constructor. More... | |
Protected Attributes | |
long | m_lCount |
size of the buffers (in items). More... | |
long | m_lExtra |
size of the padding added to the memory buffers. More... | |
long | m_hData |
Handle to GPU memory containing the Net parameters. More... | |
long | m_hDiff |
Handle to GPU memory containing the Net gradient. More... | |
int | m_nDeviceID |
The Device ID. More... | |
Properties | |
long | count [get] |
Returns the size of the buffers (in items). More... | |
long | data [get] |
Returns the handle to the GPU memory containing the Net parameters. More... | |
long | diff [get] |
Returns the handle to the GPU memory containing the Net gradients. More... | |
The Params contains the base parameters used in multi-GPU training.
T | Specifies the base type float or double. Using float is recommended to conserve GPU memory. |
Definition at line 18 of file Parallel.cs.
MyCaffe.common.Params< T >.Params | ( | ) |
Definition at line 11253 of file CudaDnn.cs.
MyCaffe.common.Params< T >.Params | ( | Solver< T > | root_solver | ) |
The Param constructor.
root_solver | Specifies the root Solver. |
Definition at line 47 of file Parallel.cs.
|
protected |
Handle to GPU memory containing the Net parameters.
Definition at line 33 of file Parallel.cs.
|
protected |
Handle to GPU memory containing the Net gradient.
Definition at line 37 of file Parallel.cs.
|
protected |
size of the buffers (in items).
Definition at line 23 of file Parallel.cs.
|
protected |
size of the padding added to the memory buffers.
Definition at line 28 of file Parallel.cs.
|
protected |
The Device ID.
Definition at line 41 of file Parallel.cs.
|
get |
Returns the size of the buffers (in items).
Definition at line 60 of file Parallel.cs.
|
get |
Returns the handle to the GPU memory containing the Net parameters.
Definition at line 68 of file Parallel.cs.
|
get |
Returns the handle to the GPU memory containing the Net gradients.
Definition at line 76 of file Parallel.cs.