Member Site › Forums › Rosetta 3 › Rosetta 3 – General › Remote access to Rosetta on Blue Gene or another HPC system?
- This topic has 10 replies, 2 voices, and was last updated 13 years, 6 months ago by Anonymous.
-
AuthorPosts
-
-
May 16, 2011 at 3:40 pm #913Anonymous
Is there a parallel version of the Rosetta suite (for example, on Blue Gene) available to the general research community anywhere? My local supercomputer network (SHARCNET in Ontario, Canada) does not have Rosetta installed so I am wondering whether I can access it elsewhere? If not, are there instructions available for doing HPC installations?
-
May 16, 2011 at 4:02 pm #5584Anonymous
If you want a systemwide installation, you’ll have to talk to the sysadmins. As a community, the Rosetta developers do not go about getting Rosetta installed on others’ supercomputer clusters. (That said, if a developer has ever used your supercomputer, then we’ve figured out how to install it).
Assuming your cluster lets you compile your own code, then installing rosetta on the cluster is no different from installing it on a desktop. (Er, actually, it’s probably easier, since you’re more likely to have libraries, etc, already; also there’s little reason to be using Rosetta on a desktop). I have done this on multiple clusters with minimal difficulty. You often need to do a few cluster-specific steps (like adding the MPI compiler to your path, etc) but I can’t predict those ahead of time.
Does your resource not allow you to put your own code on? If not, I would guess your best bet is to badger the sysadmins to install it.
A special note about BlueGenes: A) older bluegene compilers cannot compile Rosetta because they do not completely implement the C++ standard, particularly the functors that underlie the owning pointers we use. Rosetta’s memory footprint is outgrowing the memory available on bluegenes; I can help strip it down if that is an issue but stock Rosetta may be problematic. Design is out of the question.
-
May 17, 2011 at 9:17 pm #5588Anonymous
Thanks for the advice. I am attempting an MPI installation in my own directory. The basic installation seemed to work fine, but I ran into trouble with the mpiCC installation. Regarding the system-specific steps, specifically the mpiCC compiler, I get this error:
scons: Building targets …
mpiCC -o build/src/release/linux/2.6/64/x86/gcc/mpi/apps/public/AbinitioRelax.o -c -std=c++98 -pipe -ffor-scope -W -Wall -pedantic -Wno-long-long -O3 -ffast-math -funroll-loops -finline-functions -finline-limit=20000 -s -Wno-unused-variable -DNDEBUG -DUSEMPI -Isrc -Iexternal/include -Isrc/platform/linux/64/gcc -Isrc/platform/linux/64 -Isrc/platform/linux -Iexternal/boost_1_38_0 -I/usr/local/include -I/usr/include src/apps/public/AbinitioRelax.cc
sh: mpiCC: command not found
scons: *** [build/src/release/linux/2.6/64/x86/gcc/mpi/apps/public/AbinitioRelax.o] Error 127
scons: building terminated because of errors.I’ve already adjusted the SConstruct file to include the pat the mpiCC:
path =
env = Environment(ENV = {‘PATH’ : path})Any ideas?
Thanks!
-
May 17, 2011 at 11:45 pm #5589Anonymous
Go to rosetta_source/tools/build and copy site.settings.topsail to site.settings. This improves the pathing that SCons uses. If that doesn’t work, perhaps we can try setting an alias or something…
-
May 18, 2011 at 8:27 pm #5598Anonymous
I tried the first of the last two suggestions and it seemed to get me around the problem. Here’s what I get now. Not sure if things are ok or not, because it finished what it was doing but threw an error “KeyError: ‘INCLUDE'” … is there a way to verify the build?
***
scons: Reading SConscript files …
Traceback (most recent call last):
File “/work/rf/rosetta/rosetta_source/SConstruct”, line 148, in main
build = SConscript(“tools/build/setup.py”)
File “/work/rf/scons2/lib/scons-2.0.1/SCons/Script/SConscript.py”, line 614, in __call__
return method(*args, **kw)
File “/work/rf/scons2/lib/scons-2.0.1/SCons/Script/SConscript.py”, line 551, in SConscript
return _SConscript(self.fs, *files, **subst_kw)
File “/work/rf/scons2/lib/scons-2.0.1/SCons/Script/SConscript.py”, line 260, in _SConscript
exec _file_ in call_stack[-1].globals
File “/work/rf/rosetta/rosetta_source/tools/build/setup.py”, line 411, in ?
build = setup()
File “/work/rf/rosetta/rosetta_source/tools/build/setup.py”, line 403, in setup
build.settings = setup_build_settings(build.options)
File “/work/rf/rosetta/rosetta_source/tools/build/setup.py”, line 203, in setup_build_settings
site = Settings.load(“site.settings”, “settings”)
File “/work/rf/rosetta/rosetta_source/tools/build/settings.py”, line 86, in load
execfile(file, settings)
File “site.settings”, line 23, in ?
File “/usr/lib64/python2.4/UserDict.py”, line 17, in __getitem__
def __getitem__(self, key): return self.data[key]
KeyError: ‘INCLUDE’
scons: done reading SConscript files.
scons: Building targets …
scons: `bin’ is up to date.
scons: done building targets.
[rf@tig241 rosetta_source]$ -
May 19, 2011 at 3:13 pm #5609Anonymous
Hello, I tried switching “include” in place of “INCLUDE” and also using the Rosetta Scons, but to no avail. If you have any further ideas, let me know. Thanks!!
-
May 19, 2011 at 7:53 pm #5611Anonymous
Not that I know of, I’d probably have to install it separately, but I am checking.
-
May 18, 2011 at 3:10 pm #5595Anonymous
Another possibility opens up if your system wants you to use “mpicxx” instead of “mpicc”. You can force an override there by editing user.settings (in tools/build):
"gcc, mpi" : {
"overrides" : {
"cxx" : "mpicxx"
},
},
-
May 18, 2011 at 8:31 pm #5599Anonymous
If you’ve got symlinks to functioning binaries in the bin/ folder, it worked. Here, I think it didn’t. I forget the solution to the KeyError include problem, I’ll see what I can find.
-
May 18, 2011 at 8:38 pm #5600Anonymous
It’s caused by a python and/or scons version mismatch. In the site.settings file, try “include” in place of “INCLUDE”, perhaps? This is a wild guess from the first few google hits.
You may be able to try the Rosetta-embedded SCons instead of an installed copy (scons.py in the rosetta_source directory).
-
May 19, 2011 at 3:17 pm #5610Anonymous
Do you have access to any other versions of Python on your cluster?
-
-
AuthorPosts
- You must be logged in to reply to this topic.