Re: mpb split output problem
"Steven G. Johnson" <[email protected]>
| Newsgroups | gmane.comp.science.photonic-bands |
|---|---|
| Message-ID | <[email protected]> |
On Mon, 26 Feb 2007, Hao Shen wrote: > As our server has 4 CPUs, so I type > nohup mpb-split 4 file_name.ctrl | tee file_name.out & > > When I check the output file, I can only see the calculation from the 1st to > the 26th point. Then the calculation is done. I guess the job is completely > done but I only got part of the results. the definition of k points is Works for me. I used the following input file (define-param num-k 100) (define-param k-min 0.01) (define-param k-max 0.51) (set! k-points (interpolate num-k (list (vector3 k-min) (vector3 k-max)))) (set! geometry-lattice (make lattice (size no-size no-size no-size))) (run) and then did: mpb-split 4 split-tst.ctl |grep freqs and I got all 100 k-points. Steven