Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phys magnons #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions lib/archive/Ydriver-src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.o
*.a
*.so
*.mod
modfiles.list
modulesdep.list
*.f90
*.s
*.sw*
*dSYM
*bk


# source #
##########
.check_configure
config/mk/defs.mk
*__lock*
Makefile.locks
Makefile.archive
*Makefile
make.dep
commit.msg

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
myconfig*
nohup.out
autom4te.cache
28 changes: 28 additions & 0 deletions lib/archive/Ydriver-src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## The Ydriver Yambo Library

As part of the modularization of the Yambo code, one of the goals is to split the source into different blocks (or modules), and eventually promote them into libraries. So far we created, as an experimental library, the driver library.
The source code of the library is not contained anymore in the main repo of the yambo code, but it has been moved in this dedicated repository.

### Yambo
Yambo doesn't stand for anything like "Yet Another Many-Body cOde", for instance. Unless you really want it to.

For more information, see the general documentation on the web site http://www.yambo-code.eu/

Compiling: http://www.yambo-code.eu/download/compiling.php
Installing: http://www.yambo-code.eu/download/installing.php
Getting started: http://www.yambo-code.eu/doc/getting_started.php

All the material included in this distribution is free software;
you can redistribute it and/or modify it under the terms of the GNU
General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.

These programs are distributed in the hope that they will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details (see COPYING file).

### Specific compilation flags

Nvidia
./configure FC=nvfortran FPP="cpp -traditional" FCMFLAG="-Mnomain"
Loading