(NT_packages)t_nithyanandan@enterprise:mpi4py-1.3.1$ python
Python 2.7.3 |CUSTOM| (default, Apr 11 2012, 17:52:16)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from mpi4py import MPI
[enterprise:17587] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:17587] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:17587] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[enterprise:17587] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
On 25 March 2014 04:27, <nithyan...@gmail.com> wrote:
> Hi,
>
> I have been trying to install and get mpi4py running on a Linux machine.
> Before installing mpi4py, I checked that MPI, mpicc, etc. were installed on
> the machine. I installed mpi4py using pip and also using the setup.py
> methods under a virtual environment separately and got the same results. The
> installation seemed to go OK. When I opened any interpreter, python or
> ipython, and tried to import MPI using:
> from mpi4py import MPI, I got the following fatal error:
>
Could you try to run
$ ldd /path/to/mpi4py/MPI.so
where /path/to is where mpi4py was installed?
(NT_packages)t_nithyanandan@enterprise:temp$ ldd ~/envs/NT_packages/lib/python2.7/site-packages/mpi4py/MPI.so
linux-vdso.so.1 => (0x00007fff3edff000)
libpython2.7.so.1.0 => /usr/global/MWA/src/epd-7.3-2-rh5-x86_64/lib/libpython2.7.so.1.0 (0x00007f64ddddf000)
libmpi.so.0 => /usr/lib/libmpi.so.0 (0x00007f64ddb10000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f64dd90b000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f64dd6ee000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f64dd32f000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f64dd12b000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f64dce2f000)
libopen-rte.so.0 => /usr/lib/libopen-rte.so.0 (0x00007f64dcbe1000)
/lib64/ld-linux-x86-64.so.2 (0x00007f64de489000)
libopen-pal.so.0 => /usr/lib/libopen-pal.so.0 (0x00007f64dc989000)
(NT_packages)t_nithyanandan@enterprise:temp$
Also, what Open MPI version are you running?
>
> I have tried to find more information from this group on this error. In
> particular, I read up the discussion here:
> https://groups.google.com/d/topic/mpi4py/Puv4BHqQ4qY/discussion
> and the sections 3.1 and 5.1 in http://mpi4py.scipy.org/docs/mpi4py.pdf
> and tried installing a python2.7-mpi interpreter. I find myself stuck with
> the same error upon invoking python2.7-mpi
>
When the python2.7-mpi fails? Immediately after invoking it? Are you
able to get the python prompt?
(NT_packages)t_nithyanandan@enterprise:temp$ ~/envs/NT_packages/bin/python2.7-mpi
[enterprise:17819] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:17819] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:17819] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[enterprise:17819] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
(NT_packages)t_nithyanandan@enterprise:temp$
> I get the same errors if I use mpirun on a test python code from the command
> line as well. I do not have system administrator privileges but I could get
> some assistance if I have some strong leads on how to proceed and if it
> requires administrative privileges to fix this error.
>
Before anything, please try this:
$ wget https://bitbucket.org/mpi4py/mpi4py/raw/master/demo/helloworld.c
$ mpicc helloworld.c -o helloworld.exe
$ mpiexec -n 4 $./helloworld.exe
Does it produce the expected output?
(NT_packages)t_nithyanandan@enterprise:temp$ wget https://bitbucket.org/mpi4py/mpi4py/raw/master/demo/helloworld.c
--2014-03-25 11:48:34-- https://bitbucket.org/mpi4py/mpi4py/raw/master/demo/helloworld.c
Resolving bitbucket.org (bitbucket.org)... 131.103.20.168, 131.103.20.167
Connecting to bitbucket.org (bitbucket.org)|131.103.20.168|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 621 [text/plain]
Saving to: `helloworld.c'
100%[=========================================>] 621 --.-K/s in 0s
2014-03-25 11:48:35 (184 MB/s) - `helloworld.c' saved [621/621]
(NT_packages)t_nithyanandan@enterprise:temp$ mpicc helloworld.c -o helloworld.exe
(NT_packages)t_nithyanandan@enterprise:temp$ ls -ltr
total 16
-rwxrwxr-x 1 t_nithyanandan loco 8728 Mar 25 11:48 helloworld.exe
-rw-rw-r-- 1 t_nithyanandan loco 621 Mar 25 2014 helloworld.c
(NT_packages)t_nithyanandan@enterprise:temp$ mpiexec -n 4 $./helloworld.exe
[proxy:0:0@enterprise] HYDU_create_process (./utils/launch/launch.c:69): execvp error on file $./helloworld.exe (No such file or directory)
[proxy:0:0@enterprise] HYDU_create_process (./utils/launch/launch.c:69): execvp error on file $./helloworld.exe (No such file or directory)
[proxy:0:0@enterprise] HYDU_create_process (./utils/launch/launch.c:69): execvp error on file $./helloworld.exe (No such file or directory)
[proxy:0:0@enterprise] HYDU_create_process (./utils/launch/launch.c:69): execvp error on file $./helloworld.exe (No such file or directory)
(NT_packages)t_nithyanandan@enterprise:temp$
--To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/bd09da2c-48dc-495f-90c1-913321f07ddb%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "mpi4py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+un...@googlegroups.com.
To post to this group, send email to mpi...@googlegroups.com.
Visit this group at http://groups.google.com/group/mpi4py.
t_nithyanandan@enterprise:temp$ mpiexec -n 4 ./helloworld.exe
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
[enterprise:12157] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12157] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12157] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
[enterprise:12158] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12158] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12158] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
[enterprise:12155] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[enterprise:12157] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[enterprise:12158] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
[enterprise:12156] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12156] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12156] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
--------------------------------------------------------------------------
--------------------------------------------------------------------------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
--------------------------------------------------------------------------
*** The MPI_Init_thread() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[enterprise:12156] Abort before MPI_INIT completed successfully; not able to guarantee that all other processes were killed!
t_nithyanandan@enterprise:temp$
Oh, here's the right output:
t_nithyanandan@enterprise:temp$ mpiexec -n 4 ./helloworld.exe
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable eithers could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
Hi Aron,
Yes, the base MPI does appear to be broken. Any ideas or pointers on diagnosing it would be very helpful. Or would you suggest a fresh install?
Thanks,
Nithya
On Tuesday, 25 March 2014 12:59:16 UTC-7, Aron Ahmadia wrote:Looks like a broken system MPI to me. Can you verify that your base MPI install is working?
On Tuesday, March 25, 2014, Nithyanandan Thyagarajan <nithyan...@gmail.com> wrote:
Oh, here's the right output:t_nithyanandan@enterprise:temp$ mpiexec -n 4 ./helloworld.exe
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable eithers could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an <
--
You received this message because you are subscribed to the Google Groups "mpi4py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+un...@googlegroups.com.
To post to this group, send email to mpi...@googlegroups.com.
Visit this group at http://groups.google.com/group/mpi4py.
To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/75b7ee83-8ddb-45e2-a7b8-32573342dff0%40googlegroups.com.
You can use hashdist to install a local mpich, Python, and mpi4py. What os are you on?
t_nithyanandan@enterprise:~$ uname -a
Linux enterprise 3.2.0-38-generic #60-Ubuntu SMP Wed Feb 13 13:22:43 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
t_nithyanandan@enterprise:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 12.04.2 LTS
Release: 12.04
Codename: precise
t_nithyanandan@enterprise:~$
Hi Aron,--
Yes, the base MPI does appear to be broken. Any ideas or pointers on diagnosing it would be very helpful. Or would you suggest a fresh install?
Thanks,
Nithya
On Tuesday, 25 March 2014 12:59:16 UTC-7, Aron Ahmadia wrote:Looks like a broken system MPI to me. Can you verify that your base MPI install is working?
On Tuesday, March 25, 2014, Nithyanandan Thyagarajan <nithyan...@gmail.com> wrote:
Oh, here's the right output:t_nithyanandan@enterprise:temp$ mpiexec -n 4 ./helloworld.exe
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable eithers could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 357
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../../../../orte/mca/ess/singleton/ess_singleton_module.c at line 230
[enterprise:12155] [[INVALID],INVALID] ORTE_ERROR_LOG: A system-required executable either could not be found or was not executable by this user in file ../../../orte/runtime/orte_init.c at line 132
--------------------------------------------------------------------------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an <
You received this message because you are subscribed to the Google Groups "mpi4py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+unsubscribe@googlegroups.com.
Hi Nithya,
I’ve put up a sample mpi4py profile here: https://gist.github.com/ahmadia/9782416
You should be able to use it, assuming you have gcc, make, git, by following the instructions below. # are comments that aren’t used by shell.
# first, get a copy of the hashdist repository
git clone https://github.com/hashdist/hashdist
# then, get a copy of the profile you'll be using
wget https://gist.githubusercontent.com/ahmadia/9782416/raw/0e79b4003c0a444012569ff33b59d2429734c8ce/mpi4py.yaml
# alternatively, you could use: curl -O or download the file by hand
# now, use hashdist to build your profile, you can add the "-v" flag if you want to see all the details of the build
# you'll see hashdist download and build an openblas, numpy, mpich, python, and finally an mpi4py
./hashdist/bin/hit build mpi4py.yaml
# now you can start up the Python with mpi4py ready to go
./mpi4py/bin/python
You’ll find the mpicc and other tools you need in ./mpi4py/bin.
A couple warnings, this profile installs a Python, MPICH, and OpenBLAS for you. This is a bit redundant if you already have working versions of these on your system, but they are guaranteed to work, which is useful :)
Let me know if this works out for you, and if not, I’m happy to try and assist.
Cheers,
Aron
NithyaGreat! I am a novice at these things but I will definitely give it a try. Looking forward to it.Thanks,
On Tue, Mar 25, 2014 at 2:57 PM, Aron Ahmadia <ar...@ahmadia.net> wrote:It doesn't. I'll send some details in a couple of hours.
--
You received this message because you are subscribed to the Google Groups "mpi4py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+un...@googlegroups.com.
To post to this group, send email to mpi...@googlegroups.com.
Visit this group at http://groups.google.com/group/mpi4py.
To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/418cf5fb-e3c8-44da-8a9b-fe6b9c9ca76e%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+un...@googlegroups.com.
To post to this group, send email to mpi...@googlegroups.com.
Visit this group at http://groups.google.com/group/mpi4py.
To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/45847b49-4aab-4b7e-b89d-2bb34b67edb5%40googlegroups.com.
(NT_packages)t_nithyanandan@enterprise:~$ mpiexec -n 5 python codes/mine/python/python-trials/MPI_runtests.py
[0@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[0@enterprise] MPI 2.1 (Open MPI 1.4.3)
[0@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[1@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[1@enterprise] MPI 2.1 (Open MPI 1.4.3)
[1@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[2@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[2@enterprise] MPI 2.1 (Open MPI 1.4.3)
[2@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[3@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[3@enterprise] MPI 2.1 (Open MPI 1.4.3)
[3@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[4@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[4@enterprise] MPI 2.1 (Open MPI 1.4.3)
[4@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
Ran 0 tests in 0.000s
----------------------------------------------------------------------
OKRan 0 tests in 0.000s
Ran 0 tests in 0.000s
OK
Ran 0 tests in 0.000s
OK
OK
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
(NT_packages)t_nithyanandan@enterprise:~$
To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/478b4c8f-89fb-44b7-afa2-a4d37cdad023%40googlegroups.com.
(NT_packages)t_nithyanandan@enterprise:test$ mpiexec -n 5 python runtests.py
[0@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[0@enterprise] MPI 2.1 (Open MPI 1.4.3)
[0@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/si
te-packages/mpi4py)
[1@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[1@enterprise] MPI 2.1 (Open MPI 1.4.3)
[1@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/si
te-packages/mpi4py)
[2@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[2@enterprise] MPI 2.1 (Open MPI 1.4.3)
[2@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/si
te-packages/mpi4py)
[3@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[3@enterprise] MPI 2.1 (Open MPI 1.4.3)
[3@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/si
te-packages/mpi4py)
[4@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[4@enterprise] MPI 2.1 (Open MPI 1.4.3)
[4@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/si
te-packages/mpi4py)
...................................................................................
...................................................................................
...................................................................................
...................................................................................
...................................................................................
...................................................................................
...................................................................................
.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
Ran 554 tests in 4.912s
OK
Ran 554 tests in 4.913s
OK
Ran 554 tests in 4.911s
OK
Ran 554 tests in 4.912s
OK
Ran 554 tests in 4.977s
OK
(NT_packages)t_nithyanandan@enterprise:test$
(NT_packages)t_nithyanandan@enterprise:test$ mpiexec -n 5 python runtests.py
[0@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[0@enterprise] MPI 2.1 (Open MPI 1.4.3)
[0@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[1@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[1@enterprise] MPI 2.1 (Open MPI 1.4.3)
[1@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[2@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[2@enterprise] MPI 2.1 (Open MPI 1.4.3)
[2@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[3@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[3@enterprise] MPI 2.1 (Open MPI 1.4.3)
[3@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[4@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[4@enterprise] MPI 2.1 (Open MPI 1.4.3)
[4@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ETo view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/05b372a1-15ed-4731-b6cd-0a2e035e043e%40googlegroups.com.
(NT_packages)t_nithyanandan@enterprise:test$ mpiexec -n 5 python runtests.py -v
[1@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[1@enterprise] MPI 2.1 (Open MPI 1.4.3)
[1@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[4@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[4@enterprise] MPI 2.1 (Open MPI 1.4.3)
[4@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[2@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[3@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[2@enterprise] MPI 2.1 (Open MPI 1.4.3)
[2@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[3@enterprise] MPI 2.1 (Open MPI 1.4.3)
[3@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
[0@enterprise] Python 2.7 (/home/t_nithyanandan/envs/NT_packages/bin/python)
[0@enterprise] MPI 2.1 (Open MPI 1.4.3)
[0@enterprise] mpi4py 1.3.1 (/home/t_nithyanandan/envs/NT_packages/lib/python2.7/site-packages/mpi4py)
testAttr (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyTrue (test_attributes.TestCommAttrSelf) ... ok
testAttr (test_attributes.TestCommAttrWorld) ... testAttr (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyTrue (test_attributes.TestCommAttrSelf) ... ok
testAttr (test_attributes.TestCommAttrWorld) ... testAttr (test_attributes.TestCommAttrSelf) ... testAttr (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrSelf)ok
... testAttrCopyDelete (test_attributes.TestCommAttrSelf) ... ok
ok
testAttrCopyFalse (test_attributes.TestCommAttrSelf) ... testAttrCopyFalse (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyTrue (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyTrue (test_attributes.TestCommAttrSelf) ... ok
ok
testAttr (test_attributes.TestCommAttrWorld) ... testAttr (test_attributes.TestCommAttrWorld) ... testAttr (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrSelf) ... ok
testAttrCopyTrue (test_attributes.TestCommAttrSelf) ... ok
testAttr (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrWorld)ok
testAttrCopyDelete (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyDelete (test_attributes.TestCommAttrWorld) ... ... ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) ... ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) ... ok
ok
ok
ok
ok
testAttrCopyTrue (test_attributes.TestCommAttrWorld) ... testAttrCopyTrue (test_attributes.TestCommAttrWorld) ... testAttrCopyTrue (test_attributes.TestCommAttrWorld) ... testAttrCopyTrue (test_attributes.TestCommAttrWorld) ... testAttrCopyTrue (test_attributes.TestCommAttrWorld) ... ok
ok
ok
ok
ok
testAttr (test_attributes.TestDatatypeAttrBYTE) ... testAttr (test_attributes.TestDatatypeAttrBYTE) ... testAttr (test_attributes.TestDatatypeAttrBYTE) ... testAttr (test_attributes.TestDatatypeAttrBYTE) ... testAttr (test_attributes.TestDatatypeAttrBYTE) ... ok
ok
ok
ok
ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrBYTE) ... testAttrCopyDelete (test_attributes.TestDatatypeAttrBYTE) ... testAttrCopyDelete (test_attributes.TestDatatypeAttrBYTE) ... oktestAttrCopyDelete (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrBYTE) ... ok
ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrBYTE) ... testAttrCopyFalse (test_attributes.TestDatatypeAttrBYTE) ...
testAttrCopyFalse (test_attributes.TestDatatypeAttrBYTE) ... testAttrCopyFalse (test_attributes.TestDatatypeAttrBYTE) ... testAttrCopyFalse (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrBYTE) ... ok
testAttr (test_attributes.TestDatatypeAttrFLOAT)ok
testAttr (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttr (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttr (test_attributes.TestDatatypeAttrFLOAT)ok
testAttr (test_attributes.TestDatatypeAttrFLOAT) ... ... ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrFLOAT) ... ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrFLOAT) ... ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrFLOAT) ... ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrFLOAT) ... ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrFLOAT) ... ok
testAttr (test_attributes.TestDatatypeAttrINT) ... testAttr (test_attributes.TestDatatypeAttrINT) ... testAttr (test_attributes.TestDatatypeAttrINT) ... ok
testAttr (test_attributes.TestDatatypeAttrINT) ... oktestAttr (test_attributes.TestDatatypeAttrINT) ... ok
ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrINT) ... testAttrCopyDelete (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyDelete (test_attributes.TestDatatypeAttrINT) ... testAttrCopyDelete (test_attributes.TestDatatypeAttrINT) ... testAttrCopyDelete (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrINT)ok
ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyFalse (test_attributes.TestDatatypeAttrINT) ... ... testAttrCopyFalse (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrINT) ... ok
testAttrCopyTrue (test_attributes.TestDatatypeAttrINT) ... ok
ok
ok
testAttr (test_attributes.TestWinAttr)ok
testAttr (test_attributes.TestWinAttr) ... ok
testAttr (test_attributes.TestWinAttr) ... ... testAttr (test_attributes.TestWinAttr) ... testAttr (test_attributes.TestWinAttr) ... ok
ok
ok
ok
testAttrCopyDelete (test_attributes.TestWinAttr)testAttrCopyDelete (test_attributes.TestWinAttr) ... ok
testAttrCopyDelete (test_attributes.TestWinAttr) ... testAttrCopyDelete (test_attributes.TestWinAttr) ... ... testAttrCopyDelete (test_attributes.TestWinAttr) ... ok
testAllgather (test_cco_buf.TestCCOBufInplaceSelf)ok
ok
testAllgather (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
... testAllgather (test_cco_buf.TestCCOBufInplaceSelf) ... testAllgather (test_cco_buf.TestCCOBufInplaceSelf) ... testAllgather (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testAllreduce (test_cco_buf.TestCCOBufInplaceSelf)ok
... ok
testAllreduce (test_cco_buf.TestCCOBufInplaceSelf) ... testAllreduce (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testAllreduce (test_cco_buf.TestCCOBufInplaceSelf)testAllreduce (test_cco_buf.TestCCOBufInplaceSelf) ... ... ok
testGather (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testGather (test_cco_buf.TestCCOBufInplaceSelf)ok
... testGather (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testGather (test_cco_buf.TestCCOBufInplaceSelf) ... testGather (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testReduce (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testReduce (test_cco_buf.TestCCOBufInplaceSelf) ... testReduce (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testReduce (test_cco_buf.TestCCOBufInplaceSelf) ... testReduce (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceSelf)ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceSelf) ... testReduceScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceSelf)ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceSelf) ... ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceSelf) ... testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceSelf) ... ok
testScatter (test_cco_buf.TestCCOBufInplaceSelf)ok
testScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ... ok
testScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testScatter (test_cco_buf.TestCCOBufInplaceSelf) ... testScatter (test_cco_buf.TestCCOBufInplaceSelf) ... ok
ok
testAllgather (test_cco_buf.TestCCOBufInplaceWorld) ... testAllgather (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
testAllgather (test_cco_buf.TestCCOBufInplaceWorld) ... testAllgather (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testAllgather (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
ok
ok
ok
testAllreduce (test_cco_buf.TestCCOBufInplaceWorld) ... testAllreduce (test_cco_buf.TestCCOBufInplaceWorld) ... testAllreduce (test_cco_buf.TestCCOBufInplaceWorld) ... testAllreduce (test_cco_buf.TestCCOBufInplaceWorld) ... testAllreduce (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
ok
ok
ok
testGather (test_cco_buf.TestCCOBufInplaceWorld) ... testGather (test_cco_buf.TestCCOBufInplaceWorld) ... testGather (test_cco_buf.TestCCOBufInplaceWorld) ... testGather (test_cco_buf.TestCCOBufInplaceWorld) ... testGather (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
testReduce (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduce (test_cco_buf.TestCCOBufInplaceWorld) ... testReduce (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduce (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduce (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceWorld) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceWorld) ... testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceWorld) ... testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceWorld) ... testReduceScatterBlock (test_cco_buf.TestCCOBufInplaceWorld) ... ok
ok
testScatter (test_cco_buf.TestCCOBufInplaceWorld)ok
testScatter (test_cco_buf.TestCCOBufInplaceWorld)ok
testScatter (test_cco_buf.TestCCOBufInplaceWorld)ok
testScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ... testScatter (test_cco_buf.TestCCOBufInplaceWorld) ... ... ... ok
ok
ok
ok
ok
testAllgather (test_cco_buf.TestCCOBufSelf) ... testAllgather (test_cco_buf.TestCCOBufSelf) ... testAllgather (test_cco_buf.TestCCOBufSelf) ... testAllgather (test_cco_buf.TestCCOBufSelf) ... testAllgather (test_cco_buf.TestCCOBufSelf) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelf) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelf) ... ok
ok
testAllreduce (test_cco_buf.TestCCOBufSelf) ... testAllreduce (test_cco_buf.TestCCOBufSelf) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelf) ... ok
ok
testAlltoall (test_cco_buf.TestCCOBufSelf) ... ok
ok
testAlltoall (test_cco_buf.TestCCOBufSelf) ... testAlltoall (test_cco_buf.TestCCOBufSelf) ... testAlltoall (test_cco_buf.TestCCOBufSelf) ... ok
testAlltoall (test_cco_buf.TestCCOBufSelf) ... ok
ok
ok
testBarrier (test_cco_buf.TestCCOBufSelf) ... ok
ok
testBarrier (test_cco_buf.TestCCOBufSelf) ... ok
testBcast (test_cco_buf.TestCCOBufSelf) ... testBarrier (test_cco_buf.TestCCOBufSelf) ... ok
testBcast (test_cco_buf.TestCCOBufSelf) ... testBarrier (test_cco_buf.TestCCOBufSelf) ... ok
testBcast (test_cco_buf.TestCCOBufSelf) ... ok
testBcast (test_cco_buf.TestCCOBufSelf) ... testBarrier (test_cco_buf.TestCCOBufSelf) ... ok
testBcast (test_cco_buf.TestCCOBufSelf) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelf) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelf)ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelf) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelf) ... ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelf) ... ok
testExscan (test_cco_buf.TestCCOBufSelf) ... ok
ok
ok
testExscan (test_cco_buf.TestCCOBufSelf) ... testExscan (test_cco_buf.TestCCOBufSelf) ... ok
testExscan (test_cco_buf.TestCCOBufSelf) ... testExscan (test_cco_buf.TestCCOBufSelf) ... ok
ok
testGather (test_cco_buf.TestCCOBufSelf) ... ok
ok
ok
testGather (test_cco_buf.TestCCOBufSelf) ... testGather (test_cco_buf.TestCCOBufSelf) ... testGather (test_cco_buf.TestCCOBufSelf) ... testGather (test_cco_buf.TestCCOBufSelf) ... ok
ok
ok
testReduce (test_cco_buf.TestCCOBufSelf) ... testReduce (test_cco_buf.TestCCOBufSelf) ... ok
testReduce (test_cco_buf.TestCCOBufSelf) ... ok
testReduce (test_cco_buf.TestCCOBufSelf) ... testReduce (test_cco_buf.TestCCOBufSelf) ... ok
testReduceScatter (test_cco_buf.TestCCOBufSelf)ok
ok
... testReduceScatter (test_cco_buf.TestCCOBufSelf) ... testReduceScatter (test_cco_buf.TestCCOBufSelf) ... ok
ok
testReduceScatter (test_cco_buf.TestCCOBufSelf) ... testReduceScatter (test_cco_buf.TestCCOBufSelf) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelf) ... ok
testScan (test_cco_buf.TestCCOBufSelf) ... ok
ok
ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelf) ... testReduceScatterBlock (test_cco_buf.TestCCOBufSelf) ... testReduceScatterBlock (test_cco_buf.TestCCOBufSelf) ... ok
testScan (test_cco_buf.TestCCOBufSelf) ... testReduceScatterBlock (test_cco_buf.TestCCOBufSelf) ... ok
ok
testScan (test_cco_buf.TestCCOBufSelf)ok
... testScan (test_cco_buf.TestCCOBufSelf) ... testScan (test_cco_buf.TestCCOBufSelf) ... ok
testScatter (test_cco_buf.TestCCOBufSelf) ... ok
testScatter (test_cco_buf.TestCCOBufSelf) ... ok
testScatter (test_cco_buf.TestCCOBufSelf) ... ok
ok
testScatter (test_cco_buf.TestCCOBufSelf) ... testScatter (test_cco_buf.TestCCOBufSelf) ... ok
testAllgather (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testAllgather (test_cco_buf.TestCCOBufSelfDup) ... testAllgather (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testAllgather (test_cco_buf.TestCCOBufSelfDup) ... testAllgather (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufSelfDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufSelfDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufSelfDup) ... ok
testBarrier (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testAlltoall (test_cco_buf.TestCCOBufSelfDup)ok
testBcast (test_cco_buf.TestCCOBufSelfDup)testAlltoall (test_cco_buf.TestCCOBufSelfDup) ... ... ... ok
ok
testBarrier (test_cco_buf.TestCCOBufSelfDup) ... testBarrier (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
ok
testBcast (test_cco_buf.TestCCOBufSelfDup) ... testBcast (test_cco_buf.TestCCOBufSelfDup) ... testBcastTypeIndexed (test_cco_buf.TestCCOBufSelfDup) ... ok
testBarrier (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelfDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelfDup) ... ok
testBcast (test_cco_buf.TestCCOBufSelfDup) ... testBarrier (test_cco_buf.TestCCOBufSelfDup) ... ok
testBcast (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufSelfDup) ... testBcastTypeIndexed (test_cco_buf.TestCCOBufSelfDup) ... testExscan (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testExscan (test_cco_buf.TestCCOBufSelfDup) ... testExscan (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testExscan (test_cco_buf.TestCCOBufSelfDup) ... testExscan (test_cco_buf.TestCCOBufSelfDup) ... ok
testGather (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testGather (test_cco_buf.TestCCOBufSelfDup) ... testGather (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduce (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testReduce (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testReduce (test_cco_buf.TestCCOBufSelfDup) ... testGather (test_cco_buf.TestCCOBufSelfDup) ... testGather (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testReduce (test_cco_buf.TestCCOBufSelfDup) ... testReduce (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testReduceScatter (test_cco_buf.TestCCOBufSelfDup) ... testReduceScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testReduceScatter (test_cco_buf.TestCCOBufSelfDup) ... testReduceScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelfDup) ... ok
testScan (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelfDup) ... ok
testScan (test_cco_buf.TestCCOBufSelfDup) ... ok
testScan (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelfDup) ... ok
testScan (test_cco_buf.TestCCOBufSelfDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufSelfDup) ... ok
testScan (test_cco_buf.TestCCOBufSelfDup) ... ok
testScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
testScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
ok
testScatter (test_cco_buf.TestCCOBufSelfDup) ... testAllgather (test_cco_buf.TestCCOBufWorld) ... ok
testScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllgather (test_cco_buf.TestCCOBufWorld) ... ok
ok
testAllgather (test_cco_buf.TestCCOBufWorld) ... testAllgather (test_cco_buf.TestCCOBufWorld) ... ok
testScatter (test_cco_buf.TestCCOBufSelfDup) ... ok
testAllgather (test_cco_buf.TestCCOBufWorld) ... ok
ok
ok
ok
ok
testAllreduce (test_cco_buf.TestCCOBufWorld) ... testAllreduce (test_cco_buf.TestCCOBufWorld) ... testAllreduce (test_cco_buf.TestCCOBufWorld) ... testAllreduce (test_cco_buf.TestCCOBufWorld) ... testAllreduce (test_cco_buf.TestCCOBufWorld) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorld) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorld) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorld) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorld) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorld) ... ok
testBarrier (test_cco_buf.TestCCOBufWorld) ... ok
testBarrier (test_cco_buf.TestCCOBufWorld) ... ok
testBarrier (test_cco_buf.TestCCOBufWorld) ... ok
testBarrier (test_cco_buf.TestCCOBufWorld) ... ok
testBarrier (test_cco_buf.TestCCOBufWorld) ... ok
ok
ok
ok
ok
testBcast (test_cco_buf.TestCCOBufWorld) ... testBcast (test_cco_buf.TestCCOBufWorld) ... testBcast (test_cco_buf.TestCCOBufWorld) ... testBcast (test_cco_buf.TestCCOBufWorld) ... testBcast (test_cco_buf.TestCCOBufWorld) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorld) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorld) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorld) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorld) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorld) ... ok
testExscan (test_cco_buf.TestCCOBufWorld) ... okok
ok
ok
testExscan (test_cco_buf.TestCCOBufWorld) ... testExscan (test_cco_buf.TestCCOBufWorld) ... testExscan (test_cco_buf.TestCCOBufWorld) ... testExscan (test_cco_buf.TestCCOBufWorld) ... ok
testGather (test_cco_buf.TestCCOBufWorld) ... ok
testGather (test_cco_buf.TestCCOBufWorld) ... ok
ok
ok
testGather (test_cco_buf.TestCCOBufWorld) ... testGather (test_cco_buf.TestCCOBufWorld) ... testGather (test_cco_buf.TestCCOBufWorld) ... ok
ok
testReduce (test_cco_buf.TestCCOBufWorld) ... ok
testReduce (test_cco_buf.TestCCOBufWorld) ... ok
testReduce (test_cco_buf.TestCCOBufWorld)testReduce (test_cco_buf.TestCCOBufWorld) ... ... ok
testReduce (test_cco_buf.TestCCOBufWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorld) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorld) ... ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorld)ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorld)ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorld) ... ok
... ... testReduceScatterBlock (test_cco_buf.TestCCOBufWorld) ... testReduceScatterBlock (test_cco_buf.TestCCOBufWorld) ... ok
testScan (test_cco_buf.TestCCOBufWorld) ... ok
testScan (test_cco_buf.TestCCOBufWorld) ... ok
testScan (test_cco_buf.TestCCOBufWorld) ... ok
testScan (test_cco_buf.TestCCOBufWorld) ... ok
testScan (test_cco_buf.TestCCOBufWorld) ... ok
testScatter (test_cco_buf.TestCCOBufWorld) ... ok
ok
ok
testScatter (test_cco_buf.TestCCOBufWorld) ... ok
testScatter (test_cco_buf.TestCCOBufWorld) ... testScatter (test_cco_buf.TestCCOBufWorld) ... testScatter (test_cco_buf.TestCCOBufWorld) ... ok
ok
ok
ok
ok
testAllgather (test_cco_buf.TestCCOBufWorldDup) ... testAllgather (test_cco_buf.TestCCOBufWorldDup) ... testAllgather (test_cco_buf.TestCCOBufWorldDup) ... testAllgather (test_cco_buf.TestCCOBufWorldDup) ... testAllgather (test_cco_buf.TestCCOBufWorldDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testAllreduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorldDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorldDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorldDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorldDup) ... ok
testAlltoall (test_cco_buf.TestCCOBufWorldDup) ... ok
testBarrier (test_cco_buf.TestCCOBufWorldDup) ... ok
testBarrier (test_cco_buf.TestCCOBufWorldDup) ... ok
testBarrier (test_cco_buf.TestCCOBufWorldDup) ... ok
testBarrier (test_cco_buf.TestCCOBufWorldDup) ... ok
testBarrier (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
ok
ok
ok
testBcast (test_cco_buf.TestCCOBufWorldDup) ... testBcast (test_cco_buf.TestCCOBufWorldDup) ... testBcast (test_cco_buf.TestCCOBufWorldDup) ... testBcast (test_cco_buf.TestCCOBufWorldDup) ... testBcast (test_cco_buf.TestCCOBufWorldDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorldDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorldDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorldDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorldDup) ... ok
testBcastTypeIndexed (test_cco_buf.TestCCOBufWorldDup) ... ok
testExscan (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
ok
ok
testExscan (test_cco_buf.TestCCOBufWorldDup)testExscan (test_cco_buf.TestCCOBufWorldDup) ... testExscan (test_cco_buf.TestCCOBufWorldDup) ... testExscan (test_cco_buf.TestCCOBufWorldDup) ... ... ok
testGather (test_cco_buf.TestCCOBufWorldDup) ... ok
testGather (test_cco_buf.TestCCOBufWorldDup) ... ok
testGather (test_cco_buf.TestCCOBufWorldDup) ... ok
testGather (test_cco_buf.TestCCOBufWorldDup) ... ok
testGather (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduce (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
testReduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduce (test_cco_buf.TestCCOBufWorldDup) ... testReduce (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
testReduceScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduceScatter (test_cco_buf.TestCCOBufWorldDup) ... testReduceScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorldDup) ... ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
testReduceScatterBlock (test_cco_buf.TestCCOBufWorldDup) ... testReduceScatterBlock (test_cco_buf.TestCCOBufWorldDup) ... testReduceScatterBlock (test_cco_buf.TestCCOBufWorldDup) ... ok
testScan (test_cco_buf.TestCCOBufWorldDup) ... ok
testScan (test_cco_buf.TestCCOBufWorldDup) ... ok
testScan (test_cco_buf.TestCCOBufWorldDup) ... ok
testScan (test_cco_buf.TestCCOBufWorldDup) ... ok
testScan (test_cco_buf.TestCCOBufWorldDup) ... ok
testScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
testScatter (test_cco_buf.TestCCOBufWorldDup) ... ok
ok
ok
ok
ok
testAllgather (test_cco_obj.TestCCOObjSelf) ... testAllgather (test_cco_obj.TestCCOObjSelf) ... testAllgather (test_cco_obj.TestCCOObjSelf) ... testAllgather (test_cco_obj.TestCCOObjSelf) ... testAllgather (test_cco_obj.TestCCOObjSelf) ... ok
ok
ok
testAllreduce (test_cco_obj.TestCCOObjSelf) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelf) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelf) ... testAllreduce (test_cco_obj.TestCCOObjSelf) ... testAllreduce (test_cco_obj.TestCCOObjSelf) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelf) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelf) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelf) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelf) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelf) ... ok
testBarrier (test_cco_obj.TestCCOObjSelf) ... ok
testBarrier (test_cco_obj.TestCCOObjSelf) ... ok
testBarrier (test_cco_obj.TestCCOObjSelf) ... ok
ok
testBcast (test_cco_obj.TestCCOObjSelf) ... ok
testBarrier (test_cco_obj.TestCCOObjSelf) ... ok
testBcast (test_cco_obj.TestCCOObjSelf) ... ok
testBcast (test_cco_obj.TestCCOObjSelf) ... ok
testBarrier (test_cco_obj.TestCCOObjSelf) ... ok
testBcast (test_cco_obj.TestCCOObjSelf) ... testBcast (test_cco_obj.TestCCOObjSelf) ... ok
testExscan (test_cco_obj.TestCCOObjSelf) ... ok
testExscan (test_cco_obj.TestCCOObjSelf) ... ok
testExscan (test_cco_obj.TestCCOObjSelf) ... ok
testExscan (test_cco_obj.TestCCOObjSelf) ... ok
testExscan (test_cco_obj.TestCCOObjSelf) ... ok
ok
ok
testGather (test_cco_obj.TestCCOObjSelf) ... ok
ok
testGather (test_cco_obj.TestCCOObjSelf) ... testGather (test_cco_obj.TestCCOObjSelf) ... testGather (test_cco_obj.TestCCOObjSelf) ... testGather (test_cco_obj.TestCCOObjSelf) ... ok
testReduce (test_cco_obj.TestCCOObjSelf) ... ok
testReduce (test_cco_obj.TestCCOObjSelf) ... ok
testReduce (test_cco_obj.TestCCOObjSelf) ... ok
ok
ok
ok
ok
testReduce (test_cco_obj.TestCCOObjSelf) ... testReduce (test_cco_obj.TestCCOObjSelf) ... testScan (test_cco_obj.TestCCOObjSelf) ... testScan (test_cco_obj.TestCCOObjSelf) ... testScan (test_cco_obj.TestCCOObjSelf) ... ok
ok
ok
ok
ok
testScatter (test_cco_obj.TestCCOObjSelf) ... testScatter (test_cco_obj.TestCCOObjSelf) ... testScan (test_cco_obj.TestCCOObjSelf) ... testScan (test_cco_obj.TestCCOObjSelf) ... testScatter (test_cco_obj.TestCCOObjSelf) ... ok
ok
testScatter (test_cco_obj.TestCCOObjSelf) ... testScatter (test_cco_obj.TestCCOObjSelf) ... ok
ok
ok
testAllgather (test_cco_obj.TestCCOObjSelfDup) ... testAllgather (test_cco_obj.TestCCOObjSelfDup) ... testAllgather (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testAllgather (test_cco_obj.TestCCOObjSelfDup) ... testAllgather (test_cco_obj.TestCCOObjSelfDup) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelfDup) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelfDup) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
ok
testAlltoall (test_cco_obj.TestCCOObjSelfDup) ... testAlltoall (test_cco_obj.TestCCOObjSelfDup) ... testAlltoall (test_cco_obj.TestCCOObjSelfDup) ... ok
testAllreduce (test_cco_obj.TestCCOObjSelfDup)ok
testAllreduce (test_cco_obj.TestCCOObjSelfDup) ... ... ok
testAlltoall (test_cco_obj.TestCCOObjSelfDup) ... ok
testAlltoall (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testBarrier (test_cco_obj.TestCCOObjSelfDup) ... ok
testBarrier (test_cco_obj.TestCCOObjSelfDup) ... testBarrier (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testBcast (test_cco_obj.TestCCOObjSelfDup) ... ok
testBcast (test_cco_obj.TestCCOObjSelfDup) ... testBcast (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testBarrier (test_cco_obj.TestCCOObjSelfDup) ... testBarrier (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testBcast (test_cco_obj.TestCCOObjSelfDup) ... testBcast (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
testExscan (test_cco_obj.TestCCOObjSelfDup) ... ok
testExscan (test_cco_obj.TestCCOObjSelfDup)testExscan (test_cco_obj.TestCCOObjSelfDup) ... ... ok
ok
ok
testGather (test_cco_obj.TestCCOObjSelfDup) ... testGather (test_cco_obj.TestCCOObjSelfDup) ... testGather (test_cco_obj.TestCCOObjSelfDup) ... ok
testExscan (test_cco_obj.TestCCOObjSelfDup) ... ok
testExscan (test_cco_obj.TestCCOObjSelfDup) ... ok
testGather (test_cco_obj.TestCCOObjSelfDup) ... ok
testGather (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
ok
testReduce (test_cco_obj.TestCCOObjSelfDup) ... testReduce (test_cco_obj.TestCCOObjSelfDup) ... testReduce (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
ok
testScan (test_cco_obj.TestCCOObjSelfDup) ... testScan (test_cco_obj.TestCCOObjSelfDup) ... testScan (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
ok
ok
testScatter (test_cco_obj.TestCCOObjSelfDup) ... testScatter (test_cco_obj.TestCCOObjSelfDup) ... testScatter (test_cco_obj.TestCCOObjSelfDup) ... testReduce (test_cco_obj.TestCCOObjSelfDup) ... ok
testReduce (test_cco_obj.TestCCOObjSelfDup) ... ok
testScan (test_cco_obj.TestCCOObjSelfDup) ... ok
testScan (test_cco_obj.TestCCOObjSelfDup) ... ok
testScatter (test_cco_obj.TestCCOObjSelfDup) ... ok
ok
ok
testScatter (test_cco_obj.TestCCOObjSelfDup) ... testAllgather (test_cco_obj.TestCCOObjWorld) ... ok
testAllgather (test_cco_obj.TestCCOObjWorld) ... testAllgather (test_cco_obj.TestCCOObjWorld) ... ok
testAllgather (test_cco_obj.TestCCOObjWorld) ... ok
testAllgather (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
testAllreduce (test_cco_obj.TestCCOObjWorld) ... ok
ok
testAllreduce (test_cco_obj.TestCCOObjWorld) ... testAllreduce (test_cco_obj.TestCCOObjWorld) ... testAllreduce (test_cco_obj.TestCCOObjWorld) ... testAllreduce (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testAlltoall (test_cco_obj.TestCCOObjWorld) ... testAlltoall (test_cco_obj.TestCCOObjWorld) ... testAlltoall (test_cco_obj.TestCCOObjWorld) ... testAlltoall (test_cco_obj.TestCCOObjWorld) ... testAlltoall (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testBarrier (test_cco_obj.TestCCOObjWorld) ... testBarrier (test_cco_obj.TestCCOObjWorld) ... oktestBarrier (test_cco_obj.TestCCOObjWorld) ... oktestBarrier (test_cco_obj.TestCCOObjWorld) ... ok
testBarrier (test_cco_obj.TestCCOObjWorld) ... okok
testBcast (test_cco_obj.TestCCOObjWorld) ... testBcast (test_cco_obj.TestCCOObjWorld) ... testBcast (test_cco_obj.TestCCOObjWorld) ... testBcast (test_cco_obj.TestCCOObjWorld) ... testBcast (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testExscan (test_cco_obj.TestCCOObjWorld) ... testExscan (test_cco_obj.TestCCOObjWorld) ... testExscan (test_cco_obj.TestCCOObjWorld) ... testExscan (test_cco_obj.TestCCOObjWorld) ... testExscan (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testGather (test_cco_obj.TestCCOObjWorld) ... testGather (test_cco_obj.TestCCOObjWorld) ... testGather (test_cco_obj.TestCCOObjWorld) ... testGather (test_cco_obj.TestCCOObjWorld) ... testGather (test_cco_obj.TestCCOObjWorld) ... ok
testReduce (test_cco_obj.TestCCOObjWorld) ... ok
testReduce (test_cco_obj.TestCCOObjWorld) ... ok
testReduce (test_cco_obj.TestCCOObjWorld) ... ok
testReduce (test_cco_obj.TestCCOObjWorld) ... ok
testReduce (test_cco_obj.TestCCOObjWorld) ... ok
testScan (test_cco_obj.TestCCOObjWorld) ... ok
testScan (test_cco_obj.TestCCOObjWorld) ... ok
testScan (test_cco_obj.TestCCOObjWorld) ... ok
testScan (test_cco_obj.TestCCOObjWorld) ... ok
testScan (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testScatter (test_cco_obj.TestCCOObjWorld) ... testScatter (test_cco_obj.TestCCOObjWorld) ... testScatter (test_cco_obj.TestCCOObjWorld) ... testScatter (test_cco_obj.TestCCOObjWorld) ... testScatter (test_cco_obj.TestCCOObjWorld) ... ok
ok
ok
ok
ok
testAllgather (test_cco_obj.TestCCOObjWorldDup) ... testAllgather (test_cco_obj.TestCCOObjWorldDup) ... testAllgather (test_cco_obj.TestCCOObjWorldDup) ... testAllgather (test_cco_obj.TestCCOObjWorldDup) ... testAllgather (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
testAllreduce (test_cco_obj.TestCCOObjWorldDup) ... testAllreduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testAllreduce (test_cco_obj.TestCCOObjWorldDup) ... testAllreduce (test_cco_obj.TestCCOObjWorldDup) ... testAllreduce (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testAlltoall (test_cco_obj.TestCCOObjWorldDup) ... testAlltoall (test_cco_obj.TestCCOObjWorldDup) ... testAlltoall (test_cco_obj.TestCCOObjWorldDup) ... testAlltoall (test_cco_obj.TestCCOObjWorldDup) ... testAlltoall (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testBarrier (test_cco_obj.TestCCOObjWorldDup) ... ok
testBarrier (test_cco_obj.TestCCOObjWorldDup) ... ok
testBarrier (test_cco_obj.TestCCOObjWorldDup) ... ok
testBarrier (test_cco_obj.TestCCOObjWorldDup) ... ok
testBarrier (test_cco_obj.TestCCOObjWorldDup) ... ok
testBcast (test_cco_obj.TestCCOObjWorldDup) ... testBcast (test_cco_obj.TestCCOObjWorldDup) ... testBcast (test_cco_obj.TestCCOObjWorldDup) ... testBcast (test_cco_obj.TestCCOObjWorldDup) ... testBcast (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testExscan (test_cco_obj.TestCCOObjWorldDup) ... testExscan (test_cco_obj.TestCCOObjWorldDup) ... testExscan (test_cco_obj.TestCCOObjWorldDup) ... testExscan (test_cco_obj.TestCCOObjWorldDup) ... testExscan (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testGather (test_cco_obj.TestCCOObjWorldDup) ... testGather (test_cco_obj.TestCCOObjWorldDup) ... testGather (test_cco_obj.TestCCOObjWorldDup) ... testGather (test_cco_obj.TestCCOObjWorldDup) ... testGather (test_cco_obj.TestCCOObjWorldDup) ... ok
testReduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testReduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testReduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testReduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testReduce (test_cco_obj.TestCCOObjWorldDup) ... ok
testScan (test_cco_obj.TestCCOObjWorldDup) ... ok
testScan (test_cco_obj.TestCCOObjWorldDup) ... ok
testScan (test_cco_obj.TestCCOObjWorldDup) ... ok
testScan (test_cco_obj.TestCCOObjWorldDup) ... ok
testScan (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testScatter (test_cco_obj.TestCCOObjWorldDup) ... testScatter (test_cco_obj.TestCCOObjWorldDup) ... testScatter (test_cco_obj.TestCCOObjWorldDup) ... testScatter (test_cco_obj.TestCCOObjWorldDup) ... testScatter (test_cco_obj.TestCCOObjWorldDup) ... ok
ok
ok
ok
ok
testAllgather (test_cco_obj_inter.TestCCOObjInter) ... testAllgather (test_cco_obj_inter.TestCCOObjInter) ... testAllgather (test_cco_obj_inter.TestCCOObjInter) ... testAllgather (test_cco_obj_inter.TestCCOObjInter) ... testAllgather (test_cco_obj_inter.TestCCOObjInter) ... ERROR
ERROR
ERROR
testAllreduce (test_cco_obj_inter.TestCCOObjInter) ... testAllreduce (test_cco_obj_inter.TestCCOObjInter) ... testAllreduce (test_cco_obj_inter.TestCCOObjInter) ...
...Ran 0 tests in <span sty
...ok
testAttrCopyFalse (test_attributes.TestCommAttrWorld) <span style="color: #660;" cla
--
You received this message because you are subscribed to the Google Groups "mpi4py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mpi4py+un...@googlegroups.com.
To post to this group, send email to mpi...@googlegroups.com.
Visit this group at http://groups.google.com/group/mpi4py.
To view this discussion on the web visit https://groups.google.com/d/msgid/mpi4py/2e06488b-9555-48eb-8ecd-858ec7717f1a%40googlegroups.com.
...</blockquote