Closed alnahedh closed 7 years ago
I would try to install newest version of parallel
(use the directions on the readme). Looks like you have the version on the release page, but we're not very good at updating that, so use the master branch (it's "stable"). Your setup appears common (on Windows the program path usually has a space, and we often use prog()) on which parallel
normally runs fine.
Great.. I updated with the newest version and now it works.. Thanks!!
I have a predefined program that loops over text files, coded as
nmfp (x)
to parse them and save them into string variables. At the end of my program, each file will be a distinct observation. I have a lot of files so I'd like to parallelize the process.. The program runs fine when calling it (to run sequentially).. but when I use the parallel syntax, I get the following error which seems to indicate that spaces in Stata installation path is causing the error:Customer above refers to the path where Stata is installed, which in my case is "C:\Users\Valued Customer\Dropbox\Software\Stata 13\Installed/StataMP-64.exe"
Here is my code, the predefined program along with how I am calling the parallel process:
When I call it sequentiall, say
parfor 1 1
then it runs fine.. but when I do the following:then it gives the above error
Any clues?