MCPcopy Create free account
hub / github.com/numpy/numpy / dump_dims

Function dump_dims

numpy/f2py/src/fortranobject.c:739–748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

737
738#ifdef DEBUG_COPY_ND_ARRAY
739void
740dump_dims(int rank, npy_intp const *dims)
741{
742 int i;
743 printf("[");
744 for (i = 0; i < rank; ++i) {
745 printf("%3" NPY_INTP_FMT, dims[i]);
746 }
747 printf("]\n");
748}
749void
750dump_attrs(const PyArrayObject *obj)
751{

Callers 2

dump_attrsFunction · 0.85
check_and_fix_dimensionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected