This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch multinode
in repository toolchain/lavabench.
The following commit(s) were added to refs/heads/multinode by this push:
new c48e5f8 Remove debugging multinode runes
c48e5f8 is described below
commit c48e5f8503b61d8af7fa738c1fd1ac46ca2250b4
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Tue Jul 21 15:49:05 2015 +0200
Remove debugging multinode runes
Change-Id: I29857be7317100f72208078961376b6537219028
---
invoke_session_debian | 6 ------
1 file changed, 6 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index 1dd6d92..654bbbe 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -39,12 +39,6 @@ mkdir -p /run
mkdir -p /run/hacking
echo $$ > /run/hacking/hacking.pid
-export LAVA_MULTI_NODE_DEBUG=1
-lava-group
-lava-send test
-lava-wait answer
-
-lava-send ip "ip=`hostname -I`"
lava-network broadcast eth0
#suspend in a way that is portable across shells and doesn't involve a busy-wait
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 9f8f6cb Fix r225926's broken testcase
new 7de5731 libgomp/ * target.c (gomp_offload_image_to_device): Rename [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 4 ++
gcc/config/nvptx/mkoffload.c | 21 +++++--
libgomp/ChangeLog | 13 ++++
libgomp/libgomp.h | 1 +
libgomp/oacc-init.c | 13 +++-
libgomp/target.c | 146 +++++++++++++++++++++++++------------------
6 files changed, 130 insertions(+), 68 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src
in repository toolchain/semiautobench.
commit 6b232848f4d9fcef34ddb493798aeffc2a6fd921
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Tue Jul 21 14:21:05 2015 +0200
Construct list of targets in whitespace-safe way
Unfortunately we then have to export it in a non-whitespace-safe
way, but at least we're well-behaved within the boundary of this
script.
Change-Id: Id514729f74808e18e58a21e144277c08fb3c41c1
---
invoke_session_debian | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index cc5c12d..4a7e093 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -116,7 +116,7 @@ lava-network broadcast eth0
lava-network collect eth0
echo WAITED > /dev/console
cat /tmp/lava_multi_node_cache.txt
-targets=()
+target_names=()
for lava_name in `lava-group | grep '[[:blank:]]*target$' | awk '{print $1}'`; do
echo "NAME ${lava_name}" > /dev/console
target_ip="$(lava-network query ${lava_name} ipv4)"
@@ -128,13 +128,13 @@ for lava_name in `lava-group | grep '[[:blank:]]*target$' | a [...]
echo "TYPE ${target_base}"
sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_base}.j [...]
if test $? -ne 0; then echo "Failed to generate config file for target ${lava_na [...]
- if test "${#targets[@]}" -eq 0; then
- targets=("${lava_name}")
+ if test "${#target_names[@]}" -eq 0; then
+ target_names=("${lava_name}")
else
- targets=("${targets[@]}" "${lava_name}")
+ target_names=("${target_names[@]}" "${lava_name}")
fi
done
-export targets
+export targets="${target_names[@]}"
echo "Running benchmark... I may be some time"
export LAVA_IN_LAB=1
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch inserted_src
in repository toolchain/semiautobench.
discards 4721a4f Construct list of targets in whitespace-safe way
new 6b23284 Construct list of targets in whitespace-safe way
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4721a4f)
\
N -- N -- N refs/heads/inserted_src (6b23284)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
invoke_session_debian | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src
in repository toolchain/semiautobench.
commit 4721a4f6979bfcdbea47d3072be71f026cd05c35
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Tue Jul 21 14:21:05 2015 +0200
Construct list of targets in whitespace-safe way
Unfortunately we then have to export it in a non-whitespace-safe
way, but at least we're well-behaved within the boundary of this
script.
Change-Id: Id514729f74808e18e58a21e144277c08fb3c41c1
---
invoke_session_debian | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index cc5c12d..c52177e 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -116,7 +116,7 @@ lava-network broadcast eth0
lava-network collect eth0
echo WAITED > /dev/console
cat /tmp/lava_multi_node_cache.txt
-targets=()
+declare -a target_names
for lava_name in `lava-group | grep '[[:blank:]]*target$' | awk '{print $1}'`; do
echo "NAME ${lava_name}" > /dev/console
target_ip="$(lava-network query ${lava_name} ipv4)"
@@ -128,13 +128,13 @@ for lava_name in `lava-group | grep '[[:blank:]]*target$' | a [...]
echo "TYPE ${target_base}"
sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_base}.j [...]
if test $? -ne 0; then echo "Failed to generate config file for target ${lava_na [...]
- if test "${#targets[@]}" -eq 0; then
- targets=("${lava_name}")
+ if test "${#target_names[@]}" -eq 0; then
+ target_names=("${lava_name}")
else
- targets=("${targets[@]}" "${lava_name}")
+ target_names=("${target_names[@]}" "${lava_name}")
fi
done
-export targets
+export targets="${target_names[@]}"
echo "Running benchmark... I may be some time"
export LAVA_IN_LAB=1
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch inserted_src
in repository toolchain/semiautobench.
discards 0b90591 Construct list of targets in whitespace-safe way
new 4721a4f Construct list of targets in whitespace-safe way
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (0b90591)
\
N -- N -- N refs/heads/inserted_src (4721a4f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
invoke_session_debian | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src
in repository toolchain/semiautobench.
commit 0b9059159c3370c138522c25839efa867505d0f0
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Tue Jul 21 14:21:05 2015 +0200
Construct list of targets in whitespace-safe way
Unfortunately we then have to export it in a non-whitespace-safe
way, but at least we're well-behaved within the boundary of this
script.
Change-Id: Id514729f74808e18e58a21e144277c08fb3c41c1
---
invoke_session_debian | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index cc5c12d..3f9856f 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -116,7 +116,7 @@ lava-network broadcast eth0
lava-network collect eth0
echo WAITED > /dev/console
cat /tmp/lava_multi_node_cache.txt
-targets=()
+declare -a target_names
for lava_name in `lava-group | grep '[[:blank:]]*target$' | awk '{print $1}'`; do
echo "NAME ${lava_name}" > /dev/console
target_ip="$(lava-network query ${lava_name} ipv4)"
@@ -128,13 +128,13 @@ for lava_name in `lava-group | grep '[[:blank:]]*target$' | a [...]
echo "TYPE ${target_base}"
sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_base}.j [...]
if test $? -ne 0; then echo "Failed to generate config file for target ${lava_na [...]
- if test "${#targets[@]}" -eq 0; then
- targets=("${lava_name}")
+ if test x"${target_names}" = x; then
+ target_names=("${lava_name}")
else
- targets=("${targets[@]}" "${lava_name}")
+ target_names=("${target_names[@]}" "${lava_name}")
fi
done
-export targets
+export targets="${target_names[@]}"
echo "Running benchmark... I may be some time"
export LAVA_IN_LAB=1
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch inserted_src
in repository toolchain/semiautobench.
discards fb9d7e0 Construct list of targets in whitespace-safe way
new 0b90591 Construct list of targets in whitespace-safe way
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (fb9d7e0)
\
N -- N -- N refs/heads/inserted_src (0b90591)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
invoke_session_debian | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src
in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push:
new fb9d7e0 Construct list of targets in whitespace-safe way
fb9d7e0 is described below
commit fb9d7e0e97db8fbc0c581d5d1956baed5a15cc40
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Tue Jul 21 14:21:05 2015 +0200
Construct list of targets in whitespace-safe way
Unfortunately we then have to export it in a non-whitespace-safe
way, but at least we're well-behaved within the boundary of this
script.
Change-Id: Id514729f74808e18e58a21e144277c08fb3c41c1
---
invoke_session_debian | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian
index cc5c12d..90734a2 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -116,7 +116,7 @@ lava-network broadcast eth0
lava-network collect eth0
echo WAITED > /dev/console
cat /tmp/lava_multi_node_cache.txt
-targets=()
+declare -a target_names
for lava_name in `lava-group | grep '[[:blank:]]*target$' | awk '{print $1}'`; do
echo "NAME ${lava_name}" > /dev/console
target_ip="$(lava-network query ${lava_name} ipv4)"
@@ -128,13 +128,13 @@ for lava_name in `lava-group | grep '[[:blank:]]*target$' | a [...]
echo "TYPE ${target_base}"
sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_base}.j [...]
if test $? -ne 0; then echo "Failed to generate config file for target ${lava_na [...]
- if test "${#targets[@]}" -eq 0; then
- targets=("${lava_name}")
+ if test x"${targets}" = x; then
+ target_names=("${lava_name}")
else
- targets=("${targets[@]}" "${lava_name}")
+ target_names=("${target_names[@]}" "${lava_name}")
fi
done
-export targets
+export targets="${target_names[@]}"
echo "Running benchmark... I may be some time"
export LAVA_IN_LAB=1
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 963e11e 2015-07-21 Alex Velenko <Alex.Velenko(a)arm.com> gcc/testsuit [...]
new 9f8f6cb Fix r225926's broken testcase
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/ChangeLog | 10 ++++++++--
gcc/testsuite/gfortran.dg/derived_constructor_comps_6.f90 | 2 +-
2 files changed, 9 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.