create new CPU array filled with zero
float[] h = [1f, 2f, 3f]; h.zero_(); assert(h == [0f, 0f, 0f]); assert(zeros!(HostStorage!float)(3) == [0f, 0f, 0f]);
See Implementation
create new CPU array filled with zero