Skip to content
Snippets Groups Projects
Commit 27f29d58 authored by Lukáš Krupčík's avatar Lukáš Krupčík
Browse files

Merge branch 'it4i-barbora'

parents 4a44e50a 6edb9061
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,8 @@ class EB_PGI(PackedBinary):
'install_java': [True, "Install Java JRE for graphical debugger", CUSTOM],
'install_managed': [True, "Install OpenACC Unified Memory Evaluation package", CUSTOM],
'install_nvidia': [True, "Install CUDA Toolkit Components", CUSTOM],
'install_mpi': [True, "Install MPI Components", CUSTOM],
'install_mpi_gpu': [True, "Install mpi_gpu support", CUSTOM],
}
return PackedBinary.extra_options(extra_vars)
......@@ -131,9 +133,13 @@ class EB_PGI(PackedBinary):
'PGI_INSTALL_DIR': self.installdir,
'PGI_INSTALL_JAVA': str(self.cfg['install_java']).lower(),
'PGI_INSTALL_MANAGED': str(self.cfg['install_managed']).lower(),
'PGI_INSTALL_NVIDIA': 'true',
'PGI_INSTALL_MPI': 'true',
'PGI_INSTALL_NVIDIA': str(self.cfg['install_nvidia']).lower(),
'PGI_INSTALL_MPI': str(self.cfg['install_mpi']).lower(),
'PGI_MPI_GPU_SUPPORT': str(self.cfg['install_mpi_gpu']).lower(),
#'PGI_INSTALL_NVIDIA': 'true',
#'PGI_INSTALL_MPI': 'true',
'PGI_SILENT': 'true',
#'PGI_MPI_GPU_SUPPORT': 'true',
}
cmd = "%s ./install" % ' '.join(['%s=%s' % x for x in sorted(pgi_env_vars.items())])
run_cmd(cmd, log_all=True, simple=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment