Commit 99ec66b8 authored by Davis King's avatar Davis King

clarified comments

parent 6a1e50a4
......@@ -63,6 +63,10 @@ namespace dlib
void* handle;
};
// ------------------------------------------------------------------------------------
// add a call that maps to cudnnConvolutionBackwardBias()
// ------------------------------------------------------------------------------------
void add(
......@@ -83,11 +87,11 @@ namespace dlib
calls cudnnAddTensor_v3()
This function adds the scaled values of one bias tensor to another
tensor. Each dimension of the bias tensor must match the corresponding
dimension of the srcDest tensor or must be equal to 1. In the latter
case, the same value from the bias tensor for those dimensions will be
used to blend into the srcDest tensor.
This function adds the scaled values of one src tensor to another
tensor. Each dimension of the src tensor must match the corresponding
dimension of the dest tensor or must be equal to 1. In the latter case,
the same value from the src tensor, for those dimensions, will be used
to blend into the dest tensor.
!*/
void set_tensor (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment