C/C++ source
0001 #include "tensor.h" 0002 void IntTensor_Fill(struct IntTensor *T, int a) 0003 { 0004 int i; 0005 for(i=0;i<(*T).size;i++){ 0006 (*T).vals[i]=a; 0007 } 0008 }