Commit 9cd06ce3 authored by Davis King's avatar Davis King

Clarified spec slightly.

parent 64052a3f
...@@ -33,9 +33,9 @@ namespace dlib ...@@ -33,9 +33,9 @@ namespace dlib
Finally, the convention in dlib code is to interpret the tensor as a set of Finally, the convention in dlib code is to interpret the tensor as a set of
num_samples() 3D arrays, each of dimension k() by nr() by nc(). Also, num_samples() 3D arrays, each of dimension k() by nr() by nc(). Also,
while this class does not specify a memory layout, the convention is to while this class does not specify a memory layout, the convention is to
assume that indexing into an element at coordinates (sample,k,nr,nc) can be assume that indexing into an element at coordinates (sample,k,r,c) can be
accomplished via: accomplished via:
host()[((sample*t.k() + k)*t.nr() + nr)*t.nc() + nc] host()[((sample*t.k() + k)*t.nr() + r)*t.nc() + c]
THREAD SAFETY THREAD SAFETY
Instances of this object are not thread-safe. So don't touch one from Instances of this object are not thread-safe. So don't touch one from
......
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