search for: do_hdf5save

Displaying 4 results from an estimated 4 matches for "do_hdf5save".

2007 Apr 13
2
R on Solaris 10 x64
...10 x64. Please let us know if you have any thoughts or tips that can help us debug this. Thanks, David ************ Using default transfer plist in vector_io: permuting About to write *** caught segfault *** address e8554000, cause 'memory not mapped' Traceback: 1: .External("do_hdf5save", call, sys.frame(sys.parent()), fileout, ..., PACKAGE = "hdf5") 2: hdf5save(hdf5_Fstat, "Fstat", "geneNames", "genotype") aborting ... ************ We've tried many things to debug it: * dbx Runtime Checking (RTC) is not detecting any (meaningfu...
2007 Apr 23
1
Bug in R 2.4.1 ?
...as.list(names(res)))) detach(res) which did what I wanted (R version 2.3.1 under ubuntu edgy). Since the upgrade to ubuntu feisty fawn which ships with R 2.4.1, the code above causes a crash: *** caught segfault *** address 0x11, cause 'memory not mapped' Traceback: 1: .External("do_hdf5save", call, sys.frame(sys.parent()), fileout, ..., PACKAGE = "hdf5") 2: hdf5save(fileout = "tex/ABpattern_pub/data/knnTest/gTest_annAB.1.statsAll.hdf5", "newman", "hist", "graphProp", "graphBins") 3: do.call("hdf5save", ar...
2000 Jan 29
1
HDF5 as a module
...ain/names.c 2000/01/27 05:41:22 1.119 --- src/main/names.c 2000/01/29 00:23:18 *************** *** 515,522 **** {"parse", do_parse, 0, 11, 4, PP_FUNCALL}, {"save", do_save, 0, 111, 4, PP_FUNCALL}, {"load", do_load, 0, 111, 2, PP_FUNCALL}, - {"hdf5save", do_hdf5save, 0, 0, -1, PP_FUNCALL}, - {"hdf5load", do_hdf5load, 0, 11, 2, PP_FUNCALL}, {"deparse", do_deparse, 0, 11, 2, PP_FUNCALL}, {"dput", do_dput, 0, 111, 2, PP_FUNCALL}, {"dump", do_dump, 0, 111, 2, PP_FUNCALL}, --- 515,520 ---- Index: src/main/names.h =====...
1999 Jan 27
0
load() patch
...n/names.c Tue Jan 26 16:15:07 1999 @@ -472,7 +472,7 @@ #endif {"parse", do_parse, 0, 11, 4, PP_FUNCALL}, {"save", do_save, 0, 111, 3, PP_FUNCALL}, -{"load", do_load, 0, 111, 1, PP_FUNCALL}, +{"load", do_load, 0, 111, 2, PP_FUNCALL}, {"hdf5save", do_hdf5save, 0, 0, -1, PP_FUNCALL}, {"hdf5load", do_hdf5load, 0, 11, 2, PP_FUNCALL}, {"deparse", do_deparse, 0, 11, 2, PP_FUNCALL}, diff -r --unified R-0.63.2.orig/src/main/saveload.c R-0.63.2/src/main/saveload.c --- R-0.63.2.orig/src/main/saveload.c Tue Nov 10 19:23:54 1998 +++ R-0.63.2...