Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Bootstrap
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# $Source: bitbucket.org:berkeleylab/gasnet.git/Bootstrap $
# $Source: github.com:BerkeleyLab/gasnet.git/Bootstrap $
# Description: GASNet developer Bootstrap script
# Copyright 2004, Dan Bonachea <bonachea@cs.berkeley.edu>
# Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1946,7 +1946,7 @@ GASNet-1 ChangeLog
* General
- Several fixes for missing or incorrect PowerPC memory fences
- GASNet development now takes place in a public repository.
See https://bitbucket.org/berkeleylab/gasnet
See https://github.com/BerkeleyLab/gasnet
- Numerous small changes for the switch from CVS to Git

* Removal of unmaintained platform support
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in -*- makefile -*-
# $Source: bitbucket.org:berkeleylab/gasnet.git/Makefile.am $
# $Source: github.com:BerkeleyLab/gasnet.git/Makefile.am $
# Description: Makefile for GASNet
# Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
# Terms of use are as specified in license.txt
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Other documentation:
tracking database, is available from https://gasnet.lbl.gov
* Anyone planning to modify or add to the GASNet code base should also read
the developer documents, available in the GASNet git repository, which
can be browsed online: https://bitbucket.org/berkeleylab/gasnet/src/develop
can be browsed online: https://github.com/BerkeleyLab/gasnet/tree/develop
+ README-devel: GASNet design information and coding standards
+ README-git: Rules developers are expected to follow when committing
+ template-conduit: A fill-in-the-blanks conduit code skeleton
Expand Down Expand Up @@ -1704,7 +1704,7 @@ GASNet has several mailing lists for support:

--------------------------------------------------------------------------
The canonical version of this document is located here:
https://bitbucket.org/berkeleylab/gasnet/src/master/README
https://github.com/BerkeleyLab/gasnet/blob/main/README

For more information, please email: gasnet-users@lbl.gov
or visit the GASNet home page at: https://gasnet.lbl.gov
Expand Down
8 changes: 4 additions & 4 deletions README-devel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Other documentation:
tracking database, is available from https://gasnet.lbl.gov
* Anyone planning to modify or add to the GASNet code base should also read
the following developer documents, available in the GASNet git repository, which
can be browsed online: https://bitbucket.org/berkeleylab/gasnet/src/develop
can be browsed online: https://github.com/BerkeleyLab/gasnet/tree/develop
+ README-git: Rules developers are expected to follow when committing

Contents of this file:
Expand Down Expand Up @@ -69,7 +69,7 @@ top-level/
\__ template-conduit/
\__ other/

* top-level: contains the GASNet configuration scripts and master Makefile and
* top-level: contains the GASNet configuration scripts and primary Makefile and
GASNet headers.

When making changes to GASNet (esp the configure script), please remember that
Expand All @@ -79,7 +79,7 @@ the configuration scripts, header files, etc. should not rely on anything from
outside directories not included in this distribution (other than basic system
headers and lower-level networking libraries).

* Header files: The GASNet master header file (gasnetex.h) #includes
* Header files: The GASNet primary header file (gasnetex.h) #includes
several files which should be provided by each conduit:

<gasnetex.h> includes the following files:
Expand Down Expand Up @@ -464,7 +464,7 @@ will be kept current in each release.

--------------------------------------------------------------------------
The canonical version of this document is located here:
https://bitbucket.org/berkeleylab/gasnet/src/develop/README-devel
https://github.com/BerkeleyLab/gasnet/blob/develop/README-devel

For more information, please email: gasnet-devel@lbl.gov
or visit the GASNet home page at: https://gasnet.lbl.gov
Expand Down
119 changes: 57 additions & 62 deletions README-git

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions README-release
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ GASNet Release Procedure
to remove untracked files. Otherwise it's very easy for stray files to end
up in the release.

* Under normal circumstances you will generating a release on the 'master'
* Under normal circumstances you will generating a release on the 'main'
branch after use of a "release branch" to merge in all the new work from
'develop' and update version numbers, etc. This procedure begins with the
creation of the "release branch" for a hypothetical 2040.8.0 release:
$ git checkout -b release/2040.8.0 develop

* To allow collaboration on the release work, one may optionally "publish"
the release branch on bitbucket:
the release branch on GitHub:
$ git push -u origin release/2040.8.0

* Increment the version number for each item or software module that has
Expand Down Expand Up @@ -150,30 +150,30 @@ GASNet Release Procedure

* Clone a *second* copy of the repository for the tools-only distribution:
$ git clone --branch release/2040.8.0 \
https://bitbucket.org/berkeleylab/gasnet gasnet-tools
https://github.com/BerkeleyLab/gasnet gasnet-tools
$ cd gasnet-tools
$ ./Bootstrap -o
make a separate build directory, configure and "gmake all distcheck"
to build the tools-only tarball.
The use of the URL for anonymous access to BitBucket is INTENTIONAL,
The use of the URL for anonymous access to GitHub is INTENTIONAL,
so that you cannot accidentally commit the re-writes done by the
"-o" option to ./Bootstrap.

* Iterate the appropriate steps above until you have final release
tarballs for both GASNet and GASNet_Tools

* Before merging the release branch be sure you have up-to-date clones of both
'master' and 'develop'. While it is unlikely that 'master' has changed since
'main' and 'develop'. While it is unlikely that 'main' has changed since
you began, concurrent development on 'develop' should be considered normal.
Since you haven't committed anything to either branch in your local repo,
the following should be safe:
$ git checkout develop
$ git pull --ff-only
$ git checkout master
$ git checkout main
$ git pull --ff-only

* Advanced warning #1:
If there were any "hot fixes" on 'master' since the previous release
If there were any "hot fixes" on 'main' since the previous release
then you will may need to resolve conflicts in the "git ... finish ..." or
"git merge ..." step below. If you are motivated to accept any conflict
resolution other than "-X theirs" (meaning: "use the release branch in the
Expand All @@ -187,23 +187,23 @@ GASNet Release Procedure
you will need to take extra steps to deal with this. The preferred sequence
would be create/rebase the release branch prior to the introduction of the
problematic feature. If this is not possible, then fix things up on the release
branch before it is merged to 'master', and consider skipping the release
branch before it is merged to 'main', and consider skipping the release
branch merge to develop. Individual unrelated improvements on the release
branch can instead be cherry-picked to develop.

* Now merge the release branch to 'master' (where the general public will
* Now merge the release branch to 'main' (where the general public will
expect to find sources intended for general consumption), tag the release,
and delete the transient release branch. (We no longer merge master back
and delete the transient release branch. (We no longer merge main back
to develop, due to lack of perceived benefit).
$ git checkout master
$ git checkout main
$ git merge --edit --no-ff release/2040.8.0
$ git tag -a gex-2040.8.0 -m "GASNet release 2040.8.0" master
$ git tag -a gex-2040.8.0 -m "GASNet release 2040.8.0" main

* Check the tag landed in the correct place as follows:
$ git show gex-2040.8.0
The output should show the commit message for the *merge*. If it shows any
of the earlier commits, move it using "--force":
$ git tag --force -a gex-2040.8.0 -m "GASNet release 2040.8.0" master
$ git tag --force -a gex-2040.8.0 -m "GASNet release 2040.8.0" main
OR, just "--force" it without checking - this is perfectly safe.

* Bump package patch version to .1 on develop and create annotated tag
Expand All @@ -217,10 +217,10 @@ GASNet Release Procedure
20XX-YY-ZZ: PENDING

* Check carefully that everything is exactly as you wish before you push:
$ git push origin master gex-2040.8.0
$ git push origin main gex-2040.8.0
This is the only step of this entire procedure that cannot be undone.

* If you chose to "publish" the release branch on bitbucket, then use the
* If you chose to "publish" the release branch on GitHub, then use the
following command to delete the (now unused) release branch:
$ git push --delete origin release/2040.8.0

Expand All @@ -231,10 +231,10 @@ GASNet Release Procedure
release tag.

* If the GASNet or tools spec versions have changed, they get tags too:
$ git tag gex-spec-2.1 master
$ git tag gex-spec-2.1 main
$ git push origin gex-spec-2.1
and/or
$ git tag gasnet-tools-spec-1.32 master
$ git tag gasnet-tools-spec-1.32 main
$ git push origin gasnet-tools-spec-1.32

* In Bugzilla (before publishing the release):
Expand Down Expand Up @@ -404,7 +404,7 @@ Snapshot Releases

--------------------------------------------------------------------------
The canonical version of this document is located here:
https://bitbucket.org/berkeleylab/gasnet/src/develop/README-release
https://github.com/BerkeleyLab/gasnet/blob/develop/README-release

For more information, please email: gasnet-devel@lbl.gov
or visit the GASNet home page at: https://gasnet.lbl.gov
Expand Down
2 changes: 1 addition & 1 deletion README-tools
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ COMPILER.

--------------------------------------------------------------------------
The canonical version of this document is located here:
https://bitbucket.org/berkeleylab/gasnet/src/master/README-tools
https://github.com/BerkeleyLab/gasnet/blob/main/README-tools

For more information, please email: gasnet-users@lbl.gov
or visit the GASNet home page at: https://gasnet.lbl.gov
Expand Down
2 changes: 1 addition & 1 deletion acconfig.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/acconfig.h $ */
/* $Source: github.com:BerkeleyLab/gasnet.git/acconfig.h $ */
/* Description: GASNet acconfig.h (or config.h) */
/* Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu> */
/* Terms of use are as specified in license.txt */
Expand Down
2 changes: 1 addition & 1 deletion acinclude.m4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dnl $Source: bitbucket.org:berkeleylab/gasnet.git/acinclude.m4 $
dnl $Source: github.com:BerkeleyLab/gasnet.git/acinclude.m4 $
dnl Description: m4 macros
dnl Copyright 2004, Dan Bonachea <bonachea@cs.berkeley.edu>
dnl Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl -*- m4 -*-

# $Source: bitbucket.org:berkeleylab/gasnet.git/configure.in $
# $Source: github.com:BerkeleyLab/gasnet.git/configure.in $
# Description: GASNet configure script
# Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
# Copyright (c) 2014-2015 Intel Corporation. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $Source: bitbucket.org:berkeleylab/gasnet.git/docs/Makefile $
# $Source: github.com:BerkeleyLab/gasnet.git/docs/Makefile $
# Description: Makefile for GASNet documentation
# Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>

Expand Down
2 changes: 1 addition & 1 deletion extended-ref/README
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ GASNETE_BARRIER_DEFAULT can be used to set the default barrier.
everybody sends notifies to a single node, where we count them up
central node eventually notices the barrier is complete (probably
when it calls wait) and then it broadcasts the completion to all the nodes
The main problem is the need for the master to call wait before the barrier can
The main problem is the need for the central node to call wait before the barrier can
make progress - we really need a way for the "last thread" to notify all
the threads when completion is detected, but AM semantics don't provide a
simple way to do this.
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_autotune.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_autotune.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_autotune.c $
* Description: GASNet Autotuner Implementation
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_autotune_internal.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_autotune_internal.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_autotune_internal.h $
* Description: GASNet Autotuner Implementation
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_bootstrap.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_bootstrap.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_bootstrap.c $
* Description: Conduit-independent AM-based bootstrap collectives
* Copyright 2022, The Regents of the University of California
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_coll.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_coll.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_coll.h $
* Description: GASNet Extended API Collective declarations
* Copyright 2004, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_coll_fwd.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_coll_fwd.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_coll_fwd.h $
* Description: GASNet Collectives Header (forward decls)
* Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_coll_internal.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_coll_internal.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_coll_internal.h $
* Description: GASNet Collectives conduit header
* Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_eager.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_eager.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_eager.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_hashtable.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_hashtable.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_hashtable.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, The Regents of the University of California
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_hashtable.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_hashtable.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_hashtable.h $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, The Regents of the University of California
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_putget.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_putget.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_putget.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_reduce.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_reduce.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_reduce.c $
* Description: Reference implemetation of GASNet-EX Reductions
* Copyright (c) 2018 The Regents of the University of California.
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_refcoll.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_refcoll.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_refcoll.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_refcoll.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_refcoll.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_refcoll.h $
* Description: GASNet Collectives conduit header
* Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_rvous.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_rvous.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_rvous.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2004, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_scratch.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_scratch.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_scratch.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_scratch.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_scratch.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_scratch.h $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_team.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_team.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_team.c $
*
* Description: GASNet generic team implementation for collectives
* Copyright 2009, The Regents of the University of California
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_team.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_team.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_team.h $
* Description: GASNet team data structure
* Copyright 2009, The Regents of the University of California
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_trees.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_trees.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_trees.c $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/coll/gasnet_trees.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/coll/gasnet_trees.h $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/coll/gasnet_trees.h $
* Description: Reference implemetation of GASNet Collectives team
* Copyright 2009, Rajesh Nishtala <rajeshn@eecs.berkeley.edu>, Paul H. Hargrove <PHHargrove@lbl.gov>, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
2 changes: 1 addition & 1 deletion extended-ref/gasnet_extended.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $Source: bitbucket.org:berkeleylab/gasnet.git/extended-ref/gasnet_extended.c $
/* $Source: github.com:BerkeleyLab/gasnet.git/extended-ref/gasnet_extended.c $
* Description: GASNet Extended API Reference Implementation
* Copyright 2002, Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
Expand Down
Loading