Skip to content
Snippets Groups Projects
Commit f6485317 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12537 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 9482ac8c
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ help: ...@@ -55,7 +55,7 @@ help:
@echo 'make yes-all install all pgks in src dir' @echo 'make yes-all install all pgks in src dir'
@echo 'make no-all remove all pkgs from src dir' @echo 'make no-all remove all pkgs from src dir'
@echo 'make yes-standard (yes-std) install all standard pkgs' @echo 'make yes-standard (yes-std) install all standard pkgs'
@echo 'make no-standard (no-srd) remove all standard pkgs' @echo 'make no-standard (no-std) remove all standard pkgs'
@echo 'make yes-user install all user pkgs' @echo 'make yes-user install all user pkgs'
@echo 'make no-user remove all user pkgs' @echo 'make no-user remove all user pkgs'
@echo 'make no-lib remove all pkgs with external libs' @echo 'make no-lib remove all pkgs with external libs'
......
...@@ -148,11 +148,14 @@ FixIntel::FixIntel(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg) ...@@ -148,11 +148,14 @@ FixIntel::FixIntel(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg)
error->all(FLERR,"Illegal package intel command"); error->all(FLERR,"Illegal package intel command");
// set OpenMP threads // set OpenMP threads
// nomp is user setting, default = 0
// NOTE: nomp is user setting, default = 0 #if defined(_OPENMP)
if (nomp != 0) {
omp_set_num_threads(nomp);
comm->nthreads = nomp;
}
#endif
// set offload params // set offload params
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment