Searched refs:NMF_TMPDIR (Results 1 – 2 of 2) sorted by relevance
/dports/math/R-cran-NMF/NMF/R/ |
H A D | parallel.R | 868 NMF_TMPDIR <- tempfile('NMF_', getwd()) functionVar 869 if( verbose > 2 ) message("# Setup temporary directory: '", NMF_TMPDIR, "' ... ", appendLF=FALSE) 870 dir.create(NMF_TMPDIR) 871 if( !is.dir(NMF_TMPDIR) ){ 873 nmf_stop('nmf', "could not create temporary result directory '", NMF_TMPDIR, "'") 876 on.exit( unlink(NMF_TMPDIR, recursive=TRUE) ) 879 if( !file_test('-d', NMF_TMPDIR) ) 880 dir.create(NMF_TMPDIR, recursive=TRUE) 881 file_test('-d', NMF_TMPDIR) 886 …nmf_stop('nmf', "could not create/see temporary result directory '", NMF_TMPDIR, "' on worker node… [all …]
|
H A D | nmf.R | 1477 NMF_TMPDIR <- setupTempDirectory(verbose) functionVar 1481 …if( verbose > 2 ) message("# Deleting temporary directory '", NMF_TMPDIR, "' ... ", appendLF=FALSE) 1482 unlink(NMF_TMPDIR, recursive=TRUE) 1513 NMF_TMPDIR <- NMF_TMPDIR functionVar 1545 , shared=NMF_TMPDIR) 1630 resfile <- hostfile("fit", tmpdir=NMF_TMPDIR, fileext='.rds', pid=!MODE_SHARED)
|