repo_name stringlengths 7 81 | path stringlengths 4 224 | copies stringclasses 221
values | size stringlengths 4 7 | content stringlengths 975 1.04M | license stringclasses 15
values |
|---|---|---|---|---|---|
SamKChang/abinit-7.10.5_multipole | src/42_libpaw/m_pawdij.F90 | 1 | 170132 | !{\src2tex{textfont=tt}}
!!****m* ABINIT/m_pawdij
!! NAME
!! m_pawdij
!!
!! FUNCTION
!! This module contains several routines used to compute the PAW pseudopotential
!! strengths Dij. The Dijs define the non-local PAW operator:
!! VNL = Sum_ij [ Dij |pi><pj| ], with pi, pj= projectors
!!
!! COPYRIGHT
!! Cop... | gpl-3.0 |
zachary-williamson/ITK | Modules/ThirdParty/VNL/src/vxl/v3p/netlib/blas/ztrmv.f | 41 | 10389 | SUBROUTINE ZTRMV ( UPLO, TRANS, DIAG, N, A, LDA, X, INCX )
* .. Scalar Arguments ..
INTEGER INCX, LDA, N
CHARACTER*1 DIAG, TRANS, UPLO
* .. Array Arguments ..
COMPLEX*16 A( LDA, * ), X( * )
* ..
*
* Purpose
* =======
*
* ZTRMV performs one of the matrix-... | apache-2.0 |
slitvinov/packmol | fgcommon.f | 1 | 28118 | c
c Written by Leandro Martínez, 2009-2011.
c Copyright (c) 2009-2011, Leandro Martínez, Jose Mario Martinez,
c Ernesto G. Birgin.
c
c This program is free software; you can redistribute it and/or
c modify it under the terms of the GNU General Public License
c as published by the Free Software Foundation; eit... | gpl-3.0 |
qsnake/abinit | src/66_wfs/prep_kpgio.F90 | 1 | 22319 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/prep_kpgio
!! NAME
!! prep_kpgio
!!
!! FUNCTION
!! Used only in BandFFT parallelization.
!! Do initialization of kg information.
!! Transposition of all quantities which depend on kg_k
!! In case of istwfk==2, this routine completes also
!! the kg_k_gather vector by the opposite... | gpl-3.0 |
stephenR/gcc-fpp | gcc/testsuite/gfortran.dg/merge_init_expr.f90 | 162 | 1071 | ! { dg-do run }
!
! Check simplification of MERGE.
!
INTEGER, PARAMETER :: array(3) = [1, 2, 3]
LOGICAL, PARAMETER :: mask(3) = [ .TRUE., .FALSE., .TRUE. ]
INTEGER, PARAMETER :: scalar_1 = MERGE (1, 0, .TRUE.)
INTEGER, PARAMETER :: scalar_2 = MERGE (0, 1, .FALSE.)
INTEGER, PARAMETER :: array_1(3) = MERGE ... | gpl-2.0 |
qsnake/abinit | src/12_hide_mpi/xalltoall_mpi.F90 | 1 | 2139 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/xalltoall_mpi
!! NAME
!! xalltoall_mpi
!!
!! FUNCTION
!! This module contains functions that calls MPI routine,
!! if we compile the code using the MPI CPP flags.
!! xalltoall_mpi is the generic function.
!!
!! COPYRIGHT
!! Copyright (C) 2001-2012 ABINIT group (AR,XG)
!! T... | gpl-3.0 |
qsnake/abinit | src/77_ddb/m_phdos.F90 | 1 | 32813 | !{\src2tex{textfont=tt}}
!!****m* ABINIT/m_phdos
!! NAME
!! m_phdos
!!
!! FUNCTION
!! Module for the phonon density of states.
!! Container type is defined, and destruction, print subroutines
!! as well as the central mkphdos
!!
!! COPYRIGHT
!! Copyright (C) 1999-2012 ABINIT group (MG,MJV)
!! This file is distributed... | gpl-3.0 |
jjones-cavium/gcc | gcc/testsuite/gfortran.dg/array_constructor_12.f90 | 174 | 1261 | ! Like array_constructor_6.f90, but check integer(8) iterators.
! { dg-do run }
program main
integer (kind = 8) :: i, l8, u8, step8
integer (kind = 4) :: l4, step4
integer (kind = 8), parameter :: big = 10000000000_8
l4 = huge (l4)
u8 = l4 + 10_8
step4 = 2
call test ((/ (i, i = l4, u8, step4) /), l4 + 0_... | gpl-2.0 |
qsnake/abinit | src/28_numeric_noabirule/interp.F90 | 1 | 3922 | #if defined HAVE_CONFIG_H
#include "config.h"
#endif
#include "abi_common.h"
function interp(n,z,f,z0,zz)
use defs_basis
use m_numeric_tools, only : linfit
!This section has been created automatically by the script Abilint (TD).
!Do not modify the following lines by hand.
#undef ABI_FUNC
#define ABI_FUNC 'interp... | gpl-3.0 |
qsnake/abinit | src/68_rsprc/prcref.F90 | 1 | 26946 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/prcref
!!
!! NAME
!! prcref
!!
!! FUNCTION
!! Compute preconditioned residual potential (or density) and forces.
!! iprcel, iprcch and iprcfc govern the choice of the preconditioner.
!! Three tasks are done :
!! 1) Preconditioning of the forces (residual has already been include... | gpl-3.0 |
stephenR/gcc-fpp | gcc/testsuite/gfortran.dg/g77/980628-3.f | 188 | 1350 | c { dg-do run }
c { dg-options "-std=gnu" }
c
* g77 0.5.23 and previous had bugs involving too little space
* allocated for EQUIVALENCE and COMMON areas needing initial
* padding to meet alignment requirements of the system.
call subr
end
subroutine subr
implicit none
save
charact... | gpl-2.0 |
doslab/gcc-designated-initializer-support-cpp | gcc/testsuite/gfortran.dg/initialization_14.f90 | 180 | 1386 | ! { dg-do compile }
! PR 20851
! Dummy arguments are disallowed in initialization expressions in
! elemental functions except as arguments to the intrinsic functions
! BIT_SIZE, KIND, LEN, or to the numeric inquiry functions listed
! in 13.11.8
MODULE TT
INTEGER M
CONTAINS
ELEMENTAL REAL FUNCTION two(N)
INTEGER... | gpl-2.0 |
SamKChang/abinit-7.10.5_multipole | src/67_common/extrapwf.F90 | 1 | 27822 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/extrapwf
!!
!! NAME
!! extrapwf
!!
!! FUNCTION
!! Extrapolate wavefunctions for new ionic positions
!! from values of wavefunctions of previous SCF cycle.
!! Use algorithm proposed by T. A. Arias et al. in PRB 45, 1538 (1992)
!!
!! COPYRIGHT
!! Copyright (C) 1998-2014 ABINIT gr... | gpl-3.0 |
SamKChang/abinit-7.10.5_multipole | src/72_response/redgr.F90 | 1 | 4588 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/redgr
!! NAME
!! redgr
!!
!! FUNCTION
!! Compute reduced gradients of a real function on the usual unshifted
!! fft grid. The gradient directions are the along the primitive
!! reciprocal lattice vectors.
!! The input function is intended to be a single spin component of
!! the ... | gpl-3.0 |
sungsujo/nacl-llvm-branches.llvm-gcc-trunk | gcc/testsuite/gfortran.dg/used_dummy_types_6.f90 | 52 | 1422 | ! { dg-do compile }
! Tests the fix for PR30554, the USE statements in potential_energy
! would cause a segfault because the pointer_info for nfree coming
! from constraint would not find the existing symtree coming directly
! from atom.
!
! The last two modules came up subsequently to the original fix. The
! PRIVATE ... | gpl-2.0 |
doslab/gcc-designated-initializer-support-cpp | gcc/testsuite/gfortran.dg/used_dummy_types_6.f90 | 52 | 1422 | ! { dg-do compile }
! Tests the fix for PR30554, the USE statements in potential_energy
! would cause a segfault because the pointer_info for nfree coming
! from constraint would not find the existing symtree coming directly
! from atom.
!
! The last two modules came up subsequently to the original fix. The
! PRIVATE ... | gpl-2.0 |
qsnake/abinit | src/77_suscep/getlambda.F90 | 1 | 3726 | !{\src2tex{textfont=tt}}
!!****f* ABINIT/getlambda
!! NAME
!! getlambda
!!
!! FUNCTION
!! Return the abcissas and weights for the coupling constant integration.
!!
!! COPYRIGHT
!! Copyright (C) 1998-2012 ABINIT group (DCA, MF, XG, GMR, LSI, YMN).
!! This file is distributed under the terms of the
!! GNU General Public ... | gpl-3.0 |
jamestwebber/scipy | scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/cnapps.f | 38 | 17542 | c\BeginDoc
c
c\Name: cnapps
c
c\Description:
c Given the Arnoldi factorization
c
c A*V_{k} - V_{k}*H_{k} = r_{k+p}*e_{k+p}^T,
c
c apply NP implicit shifts resulting in
c
c A*(V_{k}*Q) - (V_{k}*Q)*(Q^T* H_{k}*Q) = r_{k+p}*e_{k+p}^T * Q
c
c where Q is an orthogonal matrix which is the product of rotations
c a... | bsd-3-clause |
SamKChang/abinit-7.10.5_multipole | src/43_ptgroups/m_ptgroups.F90 | 1 | 31552 | !{\src2tex{textfont=tt}}
!!****m* ABINIT/m_ptgroups
!! NAME
!! m_ptgroups
!!
!! FUNCTION
!! This module contains the irreducible representations and the
!! character tables of the 32 point groups.
!!
!! COPYRIGHT
!! Copyright (C) 2010-2014 ABINIT group (MG)
!! This file is distributed under the terms of the
!! GNU ... | gpl-3.0 |
doslab/gcc-designated-initializer-support-cpp | gcc/testsuite/gfortran.dg/namelist_39.f90 | 8 | 1360 | ! { dg-do run { target fd_truncate } }
! PR33421 and PR33253 Weird quotation of namelist output of character arrays
! Test case from Toon Moone, adapted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
! Long names used to test line_buffer feature is working.
program test
implicit none
character(len=45) :: b0123456789012345... | gpl-2.0 |
jjones-cavium/gcc | libgfortran/generated/_sqrt_c8.F90 | 15 | 1485 | ! Copyright 2002, 2007, 2009 Free Software Foundation, Inc.
! Contributed by Paul Brook <paul@nowt.org>
!
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
!
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
!License as publi... | gpl-2.0 |
stephenR/gcc-fpp | gcc/testsuite/gfortran.dg/external_procedures_1.f90 | 185 | 1089 | ! { dg-do compile }
! { dg-options "-std=f95" }
!
! This tests the patch for PR25024.
! PR25024 - The external attribute for subroutine a would cause an ICE.
subroutine A ()
EXTERNAL A ! { dg-error "EXTERNAL attribute conflicts with SUBROUTINE" }
END
function ext (y) ! { dg-error "EXTERNAL attribute conflic... | gpl-2.0 |
sungsujo/nacl-llvm-branches.llvm-gcc-trunk | libgfortran/generated/_dim_i8.F90 | 11 | 1716 | ! Copyright 2002 Free Software Foundation, Inc.
! Contributed by Paul Brook <paul@nowt.org>
!
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
!
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
!License as published by the ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cuncsd.f | 22 | 22483 | *> \brief \b CUNCSD
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CUNCSD + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cuncs... | gpl-2.0 |
QEF/q-e | XClib/dft_setting_params.f90 | 2 | 3954 | !
! Copyright (C) 2020 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!--------------------------------------------------------------------
MOD... | gpl-2.0 |
markusappel/McCode | support/common/pgplot/src/pgqtxt.f | 6 | 2267 | C*PGQTXT -- find bounding box of text string
C%void cpgqtxt(float x, float y, float angle, float fjust, \
C% const char *text, float *xbox, float *ybox);
C+
SUBROUTINE PGQTXT (X, Y, ANGLE, FJUST, TEXT, XBOX, YBOX)
REAL X, Y, ANGLE, FJUST
CHARACTER*(*) TEXT
REAL XBOX(4), YBOX(4)
C
C This routine ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/zgbtf2.f | 24 | 8142 | *> \brief \b ZGBTF2 computes the LU factorization of a general band matrix using the unblocked version of the algorithm.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZGBTF2 + dependencies
*> <a... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cposvx.f | 28 | 16696 | *> \brief <b> CPOSVX computes the solution to system of linear equations A * X = B for PO matrices</b>
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CPOSVX + dependencies
*> <a href="http://www.... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/ztrttp.f | 24 | 4817 | *> \brief \b ZTRTTP copies a triangular matrix from the standard full format (TR) to the standard packed format (TP).
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZTRTTP + dependencies
*> <a hr... | gpl-2.0 |
linzhaoming/origin | vendor/gonum.org/v1/gonum/lapack/internal/testdata/dlasqtest/dlasq3.f | 59 | 12810 | *> \brief \b DLASQ3 checks for deflation, computes a shift and calls dqds. Used by sbdsqr.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DLASQ3 + dependencies
*> <a href="http://www.netlib.org/c... | apache-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/zgeqr2p.f | 19 | 5226 | *> \brief \b ZGEQR2P computes the QR factorization of a general rectangular matrix with non-negative diagonal elements using an unblocked algorithm.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/derrqrtp.f | 31 | 6965 | *> \brief \b DERRQRTP
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE DERRQRTP( PATH, NUNIT )
*
* .. Scalar Arguments ..
* CHARACTER*3 PATH
* INT... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cbdsqr.f | 20 | 25968 | *> \brief \b CBDSQR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CBDSQR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cbdsq... | gpl-2.0 |
QEF/q-e | Modules/parameters.f90 | 2 | 1025 | !
! Copyright (C) 2001-2020 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
MODULE parameters
!
!! Upper limits on k-points, atoms and sup... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/EIG/zdrgev.f | 29 | 34076 | *> \brief \b ZDRGEV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE ZDRGEV( NSIZES, NN, NTYPES, DOTYPE, ISEED, THRESH,
* NOUNIT, A, LDA, B, S, T, ... | gpl-2.0 |
QEF/q-e | KCW/src/kcw_allocate_q.f90 | 2 | 1648 | !
! Copyright (C) 2003-2021 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/schkgb.f | 32 | 25373 | *> \brief \b SCHKGB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE SCHKGB( DOTYPE, NM, MVAL, NN, NVAL, NNB, NBVAL, NNS,
* NSVAL, THRESH, TSTERR, ... | gpl-2.0 |
wilmarcardonac/hypermcmc | ranlib/src/src-splitted/genf.f90 | 2 | 1782 | REAL FUNCTION genf(dfn,dfd)
!**********************************************************************
!
! REAL FUNCTION GENF( DFN, DFD )
! GENerate random deviate from the F distribution
!
!
! Function
!
!
! Generates a random deviate from the F (variance ratio)
!... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/dpftrs.f | 29 | 8451 | *> \brief \b DPFTRS
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DPFTRS + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dpftr... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/EIG/cget38.f | 32 | 15905 | *> \brief \b CGET38
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE CGET38( RMAX, LMAX, NINFO, KNT, NIN )
*
* .. Scalar Arguments ..
* INTEGER KNT,... | gpl-2.0 |
linzhaoming/origin | vendor/github.com/gonum/lapack/internal/testdata/dlasqtest/ilaenv.f | 129 | 18298 | *> \brief \b ILAENV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILAENV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilaen... | apache-2.0 |
pts-eduardoacuna/pachy-learning | vendor/gonum.org/v1/gonum/lapack/internal/testdata/dlasqtest/ilaenv.f | 129 | 18298 | *> \brief \b ILAENV
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ILAENV + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilaen... | gpl-3.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/EIG/sstt22.f | 32 | 7054 | *> \brief \b SSTT22
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE SSTT22( N, M, KBAND, AD, AE, SD, SE, U, LDU, WORK,
* LDWORK, RESULT )
*
* ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/zlanhp.f | 26 | 8330 | *> \brief \b ZLANHP returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex Hermitian matrix supplied in packed form.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapa... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cgetrs.f | 29 | 6059 | *> \brief \b CGETRS
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CGETRS + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cgetr... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/BLAS/SRC/dcabs1.f | 30 | 1299 | *> \brief \b DCABS1
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* DOUBLE PRECISION FUNCTION DCABS1(Z)
*
* .. Scalar Arguments ..
* COMPLEX*16 Z
* ..
* ..
*... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/slattb.f | 32 | 22039 | *> \brief \b SLATTB
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE SLATTB( IMAT, UPLO, TRANS, DIAG, ISEED, N, KD, AB,
* LDAB, B, WORK, INFO )
*
... | gpl-2.0 |
omni-compiler/omni-compiler | tests/XMP/NOT-IMPLEMENTED/59/reduction_async21.f90 | 2 | 3339 | ! testp101.f
! loop»Ø¼¨Ê¸¤Èreflect»Ø¼¨Ê¸¤Î¥Æ¥¹¥È
program main
include 'xmp_lib.h'
integer,parameter:: N=1000
!$xmp nodes p(4,*)
!$xmp template t1(N,N)
!$xmp template t2(N,N)
!$xmp template t3(N,N)
!$xmp distribute t1(block,block) onto p
!$xmp distribute t2(block,block) onto p
!$xmp distribute t3(bloc... | lgpl-3.0 |
omni-compiler/omni-compiler | tests/XMP/global-view/reduction/F/plus.f90 | 1 | 1729 | program main
include 'xmp_lib.h'
integer,parameter:: N=1000
!$xmp nodes p(4)
!$xmp template t(N)
!$xmp distribute t(cyclic) onto p
integer a(N), sa
real*8 b(N), sb
real*4 c(N), sc
integer procs, w, result, w1(4)
!$xmp align a(i) with t(i)
!$xmp align b(i) with t(i)
!$xmp align c(i) with t(i)
sa = 0
s... | lgpl-3.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/dgelqf.f | 55 | 7572 | *> \brief \b DGELQF
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DGELQF + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dgelq... | gpl-2.0 |
linzhaoming/origin | vendor/gonum.org/v1/gonum/lapack/internal/testdata/dlasqtest/testdlasq4.f90 | 59 | 11159 | program testdlasq4
implicit none
! Dlasq4 tests
integer :: i0, n0, pp, ttype, iter, nDiv, n, n0in
real(kind=8), dimension(401) :: z
real(kind=8) :: dmin, desig, qmax, dmin1, dmin2, dn, dn1, dn2, g, tau, sigma
logical :: ieee
z(1:401) = (/2.9266499599402414D+02, &
2.9276699640004830D+02, &
2.9210200041216615D+02, &
2.... | apache-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cgeqlf.f | 25 | 8099 | *> \brief \b CGEQLF
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CGEQLF + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cgeql... | gpl-2.0 |
e-q/scipy | scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/cngets.f | 141 | 5563 | c\BeginDoc
c
c\Name: cngets
c
c\Description:
c Given the eigenvalues of the upper Hessenberg matrix H,
c computes the NP shifts AMU that are zeros of the polynomial of
c degree NP which filters out components of the unwanted eigenvectors
c corresponding to the AMU's based on some given criteria.
c
c NOTE: call t... | bsd-3-clause |
omni-compiler/omni-compiler | samples/XMP/NPB-CG/Local-view/common/print_results.f | 16 | 3698 |
subroutine print_results(name, class, n1, n2, n3, niter,
> nprocs_compiled, nprocs_total,
> t, mops, optype, verified, npbversion,
> compiletime, cs1, cs2, cs3, cs4, cs5, cs6, cs7)
implicit none
character*2 name
character*1 class... | lgpl-3.0 |
QEF/q-e | PHonon/PH/phcom.f90 | 1 | 18048 | !
! Copyright (C) 2001-2018 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!-------------------------------------------------------------------... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/zspsv.f | 29 | 6945 | *> \brief <b> ZSPSV computes the solution to system of linear equations A * X = B for OTHER matrices</b>
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download ZSPSV + dependencies
*> <a href="http://www... | gpl-2.0 |
Punzo/wcslib | Fortran/wcsfix_data.f | 1 | 1901 | *=======================================================================
*
* WCSLIB 7.1 - an implementation of the FITS WCS standard.
* Copyright (C) 1995-2020, Mark Calabretta
*
* This file is part of WCSLIB.
*
* WCSLIB is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser Gene... | lgpl-3.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/dormr2.f | 24 | 7355 | *> \brief \b DORMR2 multiplies a general matrix by the orthogonal matrix from a RQ factorization determined by sgerqf (unblocked algorithm).
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DORMR2 +... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/dgehrd.f | 21 | 10784 | *> \brief \b DGEHRD
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DGEHRD + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dgehr... | gpl-2.0 |
markusappel/McCode | support/common/pgplot/examples/pgdemo7.f | 6 | 7968 | PROGRAM PGDEM7
C
C Demonstration program for 3D surface plotting routine FREDDY.
C
INTEGER PGBEG
REAL A(51,51), R, SIZE
INTEGER I, J
C
IF (PGBEG(0, '?', 1, 1) .NE. 1) THEN
STOP
END IF
C
C Calculate a sample data array.
C
DO 20 I=1,51
DO 10 J=1,51
R... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/BLAS/SRC/caxpy.f | 26 | 2274 | *> \brief \b CAXPY
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE CAXPY(N,CA,CX,INCX,CY,INCY)
*
* .. Scalar Arguments ..
* COMPLEX CA
* INTEGER INCX,IN... | gpl-2.0 |
JohnGBaker/gleam | cmplx_roots_sg.f90 | 1 | 56751 | ! Copyright 2012 Jan Skowron & Andrew Gould
!
! Licensed under the Apache License, Version 2.0 (the "License");
! you may not use this file except in compliance with the License.
! You may obtain a copy of the License at
!
! http://www.apache.org/licenses/LICENSE-2.0
!
! Unless required by applicable law... | apache-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/ddrvgbx.f | 32 | 40550 | *> \brief \b DDRVGBX
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE DDRVGB( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR, A, LA,
* AFB, LAFB, ASAV, B, ... | gpl-2.0 |
QEF/q-e | PHonon/PH/addusdynmat.f90 | 2 | 7563 | !
! Copyright (C) 2001 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!-----------------------------------------------------------------------
subroutine... | gpl-2.0 |
omni-compiler/omni-compiler | tests/XMP/global-view/intrinsic/F/intrinsic_pack_unpack.f90 | 1 | 1915 | program main
!$xmp nodes p(2,2)
!$xmp template tp(10,10)
!$xmp distribute tp(block,block) onto p
!$xmp nodes q(4)
!$xmp template tq(100)
!$xmp distribute tq(block) onto q
integer(8):: a(10,10),adash(10,10)
logical:: mask(10,10)
integer(8):: v(100),vdash(100)
!$xmp align a(i,j) with tp(i,j)
!$xmp a... | lgpl-3.0 |
QEF/q-e | PHonon/PH/psyme2.f90 | 2 | 1500 | !
! Copyright (C) 2001-2008 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/MATGEN/clarnd.f | 33 | 3907 | *> \brief \b CLARND
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* COMPLEX FUNCTION CLARND( IDIST, ISEED )
*
* .. Scalar Arguments ..
* INTEGER IDIST
* ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/ddrvge.f | 28 | 25364 | *> \brief \b DDRVGE
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE DDRVGE( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR, NMAX,
* A, AFAC, ASAV, B, BSAV... | gpl-2.0 |
QEF/q-e | test-suite/not_epw_comp/phq_readin2.f90 | 2 | 36587 | !
! Copyright (C) 2001-2020 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/slatps.f | 24 | 24381 | *> \brief \b SLATPS solves a triangular system of equations with the matrix held in packed storage.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLATPS + dependencies
*> <a href="http://www.net... | gpl-2.0 |
QEF/q-e | PW/src/multable.f90 | 2 | 1579 | !
! Copyright (C) 2001-2010 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
omni-compiler/omni-compiler | tests/XMP/global-view/loop/F/292.f90 | 1 | 1629 | program main
!$xmp nodes p(2)
!$xmp template t(10)
!$xmp distribute t(block) onto p
integer a(10), sa, ia
!$xmp align a(i) with t(i)
!$xmp task on p(1)
a(1) = 2
a(2) = 1
a(3) = 4
a(4) = 6
a(5) = 3
!$xmp end task
!$xmp task on p(2)
a(6) = 2
a(7) = 6
a(8) = 3
a(9) = 3
a(10) = 1
... | lgpl-3.0 |
QEF/q-e | PP/src/projwfc_box.f90 | 2 | 14764 | !
! Copyright (C) 2001-2013 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
! real-space local DOS code courtesy of Guido Fratesi
!
MODULE proje... | gpl-2.0 |
QEF/q-e | CPV/src/plugin_energy.f90 | 1 | 1087 | !
! Copyright (C) 2015 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!------------------------------------------------------------------------... | gpl-2.0 |
pts-eduardoacuna/pachy-learning | vendor/gonum.org/v1/gonum/mathext/internal/amos/amoslib/zrati.f | 15 | 4019 | SUBROUTINE ZRATI(ZR, ZI, FNU, N, CYR, CYI, TOL)
C***BEGIN PROLOGUE ZRATI
C***REFER TO ZBESI,ZBESK,ZBESH
C
C ZRATI COMPUTES RATIOS OF I BESSEL FUNCTIONS BY BACKWARD
C RECURRENCE. THE STARTING INDEX IS DETERMINED BY FORWARD
C RECURRENCE AS DESCRIBED IN J. RES. OF NAT. BUR. OF STANDARDS-B,
C MATHE... | gpl-3.0 |
QEF/q-e | PHonon/Gamma/macro.f90 | 2 | 1248 | !
! Copyright (C) 2003 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!----------------------------------------------------------------------
SUBROUTINE... | gpl-2.0 |
markusappel/McCode | support/common/pgplot/sys_win/w9driv.f | 6 | 22069 | C* W9DRIV -- PGPLOT device driver for Windows95 (or WindowsNT)
C+
SUBROUTINE W9DRIV (IFUNC, RBUF, NBUF, CHR, LCHR, MODE)
USE DFLIB
IMPLICIT NONE
INTEGER IFUNC, NBUF, LCHR, MODE
REAL RBUF(*)
CHARACTER CHR*(*)
C
C PGPLOT driver for IBM PC's and clones running DIGITAL Visu... | gpl-2.0 |
e-q/scipy | scipy/interpolate/fitpack/fpbfout.f | 148 | 5322 | subroutine fpbfou(t,n,par,ress,resc)
c subroutine fpbfou calculates the integrals
c /t(n-3)
c ress(j) = ! nj,4(x)*sin(par*x) dx and
c t(4)/
c /t(n-3)
c resc(j) = ! nj,4(x)*cos(par*x) dx , j=1,2,...n-4
c t(4)/
c whe... | bsd-3-clause |
wilmarcardonac/hypermcmc | lapack-3.5.0/TESTING/LIN/alaerh.f | 24 | 38022 | *> \brief \b ALAERH
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* SUBROUTINE ALAERH( PATH, SUBNAM, INFO, INFOE, OPTS, M, N, KL, KU,
* N5, IMAT, NFAIL, NERR... | gpl-2.0 |
QEF/q-e | PP/src/bands.f90 | 2 | 21019 | !
! Copyright (C) 2001-2016 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
QEF/q-e | PHonon/PH/generate_dynamical_matrix_c.f90 | 2 | 3555 | !
! Copyright (C) 2003-2010 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/ctrttf.f | 24 | 15895 | *> \brief \b CTRTTF copies a triangular matrix from the standard full format (TR) to the rectangular full packed format (TF).
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CTRTTF + dependencies
... | gpl-2.0 |
QEF/q-e | Modules/rism1d_facade.f90 | 2 | 17124 | !
! Copyright (C) 2015-2016 Satomichi Nishihara
!
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!--------------------------------------------------------------------... | gpl-2.0 |
e-q/scipy | scipy/special/cdflib/algdiv.f | 151 | 1850 | DOUBLE PRECISION FUNCTION algdiv(a,b)
C-----------------------------------------------------------------------
C
C COMPUTATION OF LN(GAMMA(B)/GAMMA(A+B)) WHEN B .GE. 8
C
C --------
C
C IN THIS ALGORITHM, DEL(X) IS THE FUNCTION DEFINED BY
C LN(GAMMA(X)) = (X - 0.5)*LN(X) - X + 0... | bsd-3-clause |
florianziemen/bin | topfill.f | 1 | 2767 | program difftop
c
parameter(ie=2160,je=1080)
c
dimension top(ie,je),ao(ie,je),an(ie,je),ihead(4)
c
read(70)ihead
read(70)top
write (6,*)ihead
c
do j=1,je
do i=1,ie
if(top(i,j).lt.-4000.)then
ao(i,j)=9.
elseif(top(i,j).lt.0.)... | gpl-3.0 |
QEF/q-e | Modules/autopilot.f90 | 2 | 31342 | ! autopilot.f90
!********************************************************************************
! autopilot.f90 Copyright (c) 2005 Targacept, Inc.
!********************************************************************************
! The Autopilot Feature suite is a user level enhanceme... | gpl-2.0 |
QEF/q-e | PW/src/efermig.f90 | 2 | 9960 | !
! Copyright (C) 2001-2003 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!--------------------------------------------------------------------
FUNCTION ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cupgtr.f | 28 | 6108 | *> \brief \b CUPGTR
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CUPGTR + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cupgt... | gpl-2.0 |
mjhsieh/FF4MM | src/framework.f | 1 | 1714 | ! Copyright (c) 2010, Mengjuei Hsieh,
! All rights reserved. - please read information in "LICENCSE.txt"
! Written by Mengjuei Hsieh, University of California Irvine
#include "definitions.fpp"
! This will be the main module that should be providing
! 1. public storage of variables
! 2. interface for callers
!
! Rule 1... | bsd-3-clause |
markusappel/McCode | support/MacOSX/pgplot/pgplot-src-mac/src/grsets.f | 6 | 1746 | C*GRSETS -- change size of view surface
C+
SUBROUTINE GRSETS (IDENT,XSIZE,YSIZE)
C
C GRPCKG : change size of plotting area. The requested dimensions
C will be reduced to the absolute maximum of the plot device if
C necessary.
C
C Arguments:
C
C IDENT (input, integer): plot identifier from GROPEN.
C XSIZE (input, ... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/chesvxx.f | 25 | 27120 | *> \brief <b> CHESVXX computes the solution to system of linear equations A * X = B for HE matrices</b>
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CHESVXX + dependencies
*> <a href="http://ww... | gpl-2.0 |
RBigData/pbdSLAP | src/ScaLAPACK/pdlascl.f | 4 | 17958 | SUBROUTINE PDLASCL( TYPE, CFROM, CTO, M, N, A, IA, JA, DESCA,
$ INFO )
*
* -- ScaLAPACK auxiliary routine (version 1.7) --
* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
* and University of California, Berkeley.
* May 1, 1997
*
* .. Scalar Arguments .... | mpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/slag2d.f | 24 | 3518 | *> \brief \b SLAG2D converts a single precision matrix to a double precision matrix.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download SLAG2D + dependencies
*> <a href="http://www.netlib.org/cgi-bin... | gpl-2.0 |
QEF/q-e | XClib/xc_wrapper_d_gga.f90 | 2 | 14176 | !
! Copyright (C) 2020 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!---------------------------------------------------------------------
SU... | gpl-2.0 |
e-q/scipy | scipy/sparse/linalg/eigen/arpack/ARPACK/SRC/cnapps.f | 38 | 17542 | c\BeginDoc
c
c\Name: cnapps
c
c\Description:
c Given the Arnoldi factorization
c
c A*V_{k} - V_{k}*H_{k} = r_{k+p}*e_{k+p}^T,
c
c apply NP implicit shifts resulting in
c
c A*(V_{k}*Q) - (V_{k}*Q)*(Q^T* H_{k}*Q) = r_{k+p}*e_{k+p}^T * Q
c
c where Q is an orthogonal matrix which is the product of rotations
c a... | bsd-3-clause |
wilmarcardonac/hypermcmc | lapack-3.5.0/INSTALL/dlamch.f | 139 | 5329 | *> \brief \b DLAMCH
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* DOUBLE PRECISION FUNCTION DLAMCH( CMACH )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> DLAMCH dete... | gpl-2.0 |
wilmarcardonac/hypermcmc | lapack-3.5.0/SRC/cla_syamv.f | 24 | 13178 | *> \brief \b CLA_SYAMV computes a matrix-vector product using a symmetric indefinite matrix to calculate error bounds.
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CLA_SYAMV + dependencies
*> <... | gpl-2.0 |
linzhaoming/origin | vendor/gonum.org/v1/gonum/lapack/internal/testdata/dsterftest/dlamch.f | 139 | 5329 | *> \brief \b DLAMCH
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* DOUBLE PRECISION FUNCTION DLAMCH( CMACH )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> DLAMCH dete... | apache-2.0 |
QEF/q-e | CPV/src/eigs0.f90 | 1 | 10446 | !
! Copyright (C) 2002-2005 FPMD-CPV groups
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!-----------------------------------------------------------------------
... | gpl-2.0 |
QEF/q-e | GWW/gww/polarization.f90 | 3 | 73199 | !
! Copyright (C) 2001-2013 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
MODULE polarization
!this module describes the structure for th... | gpl-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.