Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

UCM: added madvise into VM_UNMAP events group #3836

Merged

Conversation

hoopoepg
Copy link
Contributor

@hoopoepg hoopoepg commented Jul 5, 2019

fixes #3831

UCM_FIRE_EVENT(events, UCM_EVENT_MMAP|UCM_EVENT_VM_MAPPED, data,
p = mmap(NULL, ucm_get_page_size(), PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_ANON, -1, 0));
if (p != MAP_FAILED) {
UCM_FIRE_EVENT(events, UCM_EVENT_MADVISE, data,
madvise(p, ucm_get_page_size(), MADV_NORMAL));
madvise(p, ucm_get_page_size(),
#if HAVE_DECL_MADV_REMOVE
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we reuse some code with ucm_madvise()?
maybe if none of the MADV_xx events which actually release memory is not defined - don't test it, since we would ne be able to handle it anyway?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch BTW! we should probably add it to gtest

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we skip this test based on MADV_ macro then we have to add such preprocessings into all locations where event groups are defined and used

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw why not just use MADV_DONTNEED?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MADV_DONTNEED doesn't free pages - didn't expect that it produced event... fixed.
also added gtset for madvise (and bit updated gtest infra for malloc hooks)

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/7960/ for details.

@mellanox-github
Copy link
Contributor

Test PASSed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11026/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: PASSED on 37 workers (click for details)

Note: the logs will be deleted after 12-Jul-2019

Agent/Stage Status
_main ✔️ SUCCESS
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
hpc-test-node2_W0 ✔️ SUCCESS
hpc-test-node2_W1 ✔️ SUCCESS
hpc-test-node2_W2 ✔️ SUCCESS
hpc-test-node2_W3 ✔️ SUCCESS
hpc-test-node3_W0 ✔️ SUCCESS
hpc-test-node3_W1 ✔️ SUCCESS
hpc-test-node3_W2 ✔️ SUCCESS
hpc-test-node3_W3 ✔️ SUCCESS
hpc-test-node_W0 ✔️ SUCCESS
hpc-test-node_W1 ✔️ SUCCESS
hpc-test-node_W2 ✔️ SUCCESS
hpc-test-node_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
vulcan-jenkins_W0 ✔️ SUCCESS
vulcan-jenkins_W1 ✔️ SUCCESS
vulcan-jenkins_W2 ✔️ SUCCESS
vulcan-jenkins_W3 ✔️ SUCCESS

@hoopoepg hoopoepg force-pushed the topic/added-madvice-into-unmap-group branch from ba8bc13 to e12db21 Compare July 6, 2019 08:05
@hoopoepg
Copy link
Contributor Author

hoopoepg commented Jul 6, 2019

forced push to fix typo

@swx-jenkins1
Copy link

Test FAILed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/7965/ for details.

@hoopoepg
Copy link
Contributor Author

hoopoepg commented Jul 6, 2019

bot:bgate:retest

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/7966/ for details.

@@ -132,6 +132,39 @@ class malloc_hook : public ucs::test {
UCM_BISTRO_EPILOGUE;
return res;
}

static int madvise(void *addr, size_t length, int advise)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe add also a non-bistro test? for example add madvise(DONTNEED) to void test_thread::test() - to test also reloc mode

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added to mmap_hooks::test

@yosefe yosefe added the Bugfix label Jul 6, 2019
@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11032/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 14 of 37 workers (click for details)

Note: the logs will be deleted after 13-Jul-2019

Agent/Stage Status
_main ❌ FAILURE
hpc-arm-cavium-jenkins_W0 ❌ FAILURE
hpc-arm-cavium-jenkins_W1 ❌ FAILURE
hpc-arm-cavium-jenkins_W2 ❌ FAILURE
hpc-arm-cavium-jenkins_W3 ❌ FAILURE
hpc-arm-hwi-jenkins_W0 ❌ FAILURE
hpc-arm-hwi-jenkins_W1 ❌ FAILURE
hpc-arm-hwi-jenkins_W2 ❌ FAILURE
hpc-arm-hwi-jenkins_W3 ❌ FAILURE
hpc-test-node-upstream_W1 ❌ FAILURE
hpc-test-node2_W1 ❌ FAILURE
hpc-test-node3_W1 ❌ FAILURE
hpc-test-node_W1 ❌ FAILURE
vulcan-jenkins_W1 ❌ FAILURE
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
hpc-test-node2_W0 ✔️ SUCCESS
hpc-test-node2_W2 ✔️ SUCCESS
hpc-test-node2_W3 ✔️ SUCCESS
hpc-test-node3_W0 ✔️ SUCCESS
hpc-test-node3_W2 ✔️ SUCCESS
hpc-test-node3_W3 ✔️ SUCCESS
hpc-test-node_W0 ✔️ SUCCESS
hpc-test-node_W2 ✔️ SUCCESS
hpc-test-node_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
vulcan-jenkins_W0 ✔️ SUCCESS
vulcan-jenkins_W2 ✔️ SUCCESS
vulcan-jenkins_W3 ✔️ SUCCESS

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/7969/ for details.

@swx-jenkins1
Copy link

Test FAILed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/7970/ for details.

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11034/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 20 of 37 workers (click for details)

Note: the logs will be deleted after 13-Jul-2019

Agent/Stage Status
_main ❌ FAILURE
boo31_W0 ❌ FAILURE
boo31_W2 ❌ FAILURE
boo31_W3 ❌ FAILURE
hpc-arm-cavium-jenkins_W0 ❌ FAILURE
hpc-arm-cavium-jenkins_W1 ❌ FAILURE
hpc-arm-cavium-jenkins_W2 ❌ FAILURE
hpc-arm-cavium-jenkins_W3 ❌ FAILURE
hpc-arm-hwi-jenkins_W0 ❌ FAILURE
hpc-arm-hwi-jenkins_W1 ❌ FAILURE
hpc-arm-hwi-jenkins_W2 ❌ FAILURE
hpc-arm-hwi-jenkins_W3 ❌ FAILURE
hpc-test-node-upstream_W1 ❌ FAILURE
hpc-test-node2_W1 ❌ FAILURE
hpc-test-node3_W0 ❌ FAILURE
hpc-test-node3_W1 ❌ FAILURE
hpc-test-node3_W2 ❌ FAILURE
hpc-test-node3_W3 ❌ FAILURE
hpc-test-node_W1 ❌ FAILURE
vulcan-jenkins_W1 ❌ FAILURE
boo31_W1 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
hpc-test-node2_W0 ✔️ SUCCESS
hpc-test-node2_W2 ✔️ SUCCESS
hpc-test-node2_W3 ✔️ SUCCESS
hpc-test-node_W0 ✔️ SUCCESS
hpc-test-node_W2 ✔️ SUCCESS
hpc-test-node_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
vulcan-jenkins_W0 ✔️ SUCCESS
vulcan-jenkins_W2 ✔️ SUCCESS
vulcan-jenkins_W3 ✔️ SUCCESS

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11036/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 21 of 37 workers (click for details)

Note: the logs will be deleted after 13-Jul-2019

Agent/Stage Status
_main ❌ FAILURE
boo31_W0 ❌ FAILURE
boo31_W1 ❌ FAILURE
boo31_W2 ❌ FAILURE
boo31_W3 ❌ FAILURE
hpc-test-node-upstream_W0 ❌ FAILURE
hpc-test-node-upstream_W1 ❌ FAILURE
hpc-test-node-upstream_W2 ❌ FAILURE
hpc-test-node-upstream_W3 ❌ FAILURE
hpc-test-node2_W0 ❌ FAILURE
hpc-test-node2_W1 ❌ FAILURE
hpc-test-node2_W2 ❌ FAILURE
hpc-test-node2_W3 ❌ FAILURE
hpc-test-node3_W0 ❌ FAILURE
hpc-test-node3_W1 ❌ FAILURE
hpc-test-node3_W2 ❌ FAILURE
hpc-test-node3_W3 ❌ FAILURE
hpc-test-node_W0 ❌ FAILURE
hpc-test-node_W1 ❌ FAILURE
hpc-test-node_W2 ❌ FAILURE
hpc-test-node_W3 ❌ FAILURE
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
vulcan-jenkins_W0 ✔️ SUCCESS
vulcan-jenkins_W1 ✔️ SUCCESS
vulcan-jenkins_W2 ✔️ SUCCESS
vulcan-jenkins_W3 ✔️ SUCCESS

@dmitrygx
Copy link
Member

dmitrygx commented Jul 6, 2019

bot:pipe:retest

/* 7. Unmap the buffer */
/* 7. Unmap the buffer using madvise */
{
madvise(buffer, size, MADV_DONTNEED);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't think it's the right place to add this test
it should be in void test_thread::test()
allocate a new buffer and madvise(DONTNEED) it ..

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, shifted

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/8004/ for details.

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11079/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 3 of 37 workers (click for details)

Note: the logs will be deleted after 15-Jul-2019

Agent/Stage Status
_main ❌ FAILURE
hpc-test-node_W0 ❌ FAILURE
hpc-test-node_W1 ❌ FAILURE
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
hpc-test-node2_W0 ✔️ SUCCESS
hpc-test-node2_W1 ✔️ SUCCESS
hpc-test-node2_W2 ✔️ SUCCESS
hpc-test-node2_W3 ✔️ SUCCESS
hpc-test-node3_W0 ✔️ SUCCESS
hpc-test-node3_W1 ✔️ SUCCESS
hpc-test-node3_W2 ✔️ SUCCESS
hpc-test-node3_W3 ✔️ SUCCESS
hpc-test-node_W2 ✔️ SUCCESS
hpc-test-node_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
vulcan-jenkins_W0 ✔️ SUCCESS
vulcan-jenkins_W1 ✔️ SUCCESS
vulcan-jenkins_W2 ✔️ SUCCESS
vulcan-jenkins_W3 ✔️ SUCCESS

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11082/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 3 of 37 workers (click for details)

Note: the logs will be deleted after 15-Jul-2019

Agent/Stage Status
_main ❓ ABORTED
hpc-arm-cavium-jenkins_W0 ❓ ABORTED
hpc-arm-cavium-jenkins_W1 ❓ ABORTED
hpc-arm-cavium-jenkins_W2 ❓ ABORTED
hpc-arm-cavium-jenkins_W3 ❓ ABORTED
hpc-arm-hwi-jenkins_W0 ❓ ABORTED
hpc-arm-hwi-jenkins_W1 ❓ ABORTED
hpc-arm-hwi-jenkins_W2 ❓ ABORTED
hpc-arm-hwi-jenkins_W3 ❓ ABORTED
hpc-test-node-upstream_W0 ❓ ABORTED
hpc-test-node-upstream_W1 ❓ ABORTED
hpc-test-node-upstream_W2 ❓ ABORTED
hpc-test-node-upstream_W3 ❓ ABORTED
hpc-test-node2_W0 ❓ ABORTED
hpc-test-node2_W1 ❓ ABORTED
hpc-test-node2_W2 ❓ ABORTED
hpc-test-node2_W3 ❓ ABORTED
hpc-test-node3_W0 ❓ ABORTED
hpc-test-node3_W1 ❓ ABORTED
hpc-test-node3_W2 ❓ ABORTED
hpc-test-node3_W3 ❓ ABORTED
hpc-test-node_W0 ❓ ABORTED
vulcan-jenkins_W0 ❓ ABORTED
vulcan-jenkins_W1 ❓ ABORTED
vulcan-jenkins_W2 ❓ ABORTED
vulcan-jenkins_W3 ❓ ABORTED
hpc-test-node_W1 ❌ FAILURE
hpc-test-node_W2 ❌ FAILURE
hpc-test-node_W3 ❌ FAILURE
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS
boo31_W3 ❓ UNKNOWN

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/8005/ for details.

@yosefe
Copy link
Contributor

yosefe commented Jul 8, 2019

bot:mlx:retest

@mellanox-github
Copy link
Contributor

Test PASSed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11107/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: PASSED on 33 workers (click for details)

Note: the logs will be deleted after 16-Jul-2019

Agent/Stage Status
_main ✔️ SUCCESS
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-gpu_W0 ✔️ SUCCESS
hpc-test-node-gpu_W1 ✔️ SUCCESS
hpc-test-node-gpu_W2 ✔️ SUCCESS
hpc-test-node-gpu_W3 ✔️ SUCCESS
hpc-test-node-legacy_W0 ✔️ SUCCESS
hpc-test-node-legacy_W1 ✔️ SUCCESS
hpc-test-node-legacy_W2 ✔️ SUCCESS
hpc-test-node-legacy_W3 ✔️ SUCCESS
hpc-test-node-new_W0 ✔️ SUCCESS
hpc-test-node-new_W1 ✔️ SUCCESS
hpc-test-node-new_W2 ✔️ SUCCESS
hpc-test-node-new_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS

- added gtest for missed madvise event
- added test for madvise call
@hoopoepg hoopoepg force-pushed the topic/added-madvice-into-unmap-group branch from d5d64b0 to 51a14c3 Compare July 9, 2019 09:11
@hoopoepg
Copy link
Contributor Author

hoopoepg commented Jul 9, 2019

squashed

@swx-jenkins1
Copy link

Test PASSed.
See http://bgate.mellanox.com/jenkins/job/gh-ucx-pr/8017/ for details.

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11116/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 3 of 33 workers (click for details)

Note: the logs will be deleted after 16-Jul-2019

Agent/Stage Status
_main ❓ ABORTED
hpc-arm-hwi-jenkins_W0 ❓ ABORTED
boo31_W0 ❌ FAILURE
boo31_W1 ❌ FAILURE
hpc-test-node-gpu_W3 ❌ FAILURE
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-gpu_W0 ✔️ SUCCESS
hpc-test-node-gpu_W1 ✔️ SUCCESS
hpc-test-node-gpu_W2 ✔️ SUCCESS
hpc-test-node-legacy_W0 ✔️ SUCCESS
hpc-test-node-legacy_W1 ✔️ SUCCESS
hpc-test-node-legacy_W2 ✔️ SUCCESS
hpc-test-node-legacy_W3 ✔️ SUCCESS
hpc-test-node-new_W0 ✔️ SUCCESS
hpc-test-node-new_W1 ✔️ SUCCESS
hpc-test-node-new_W2 ✔️ SUCCESS
hpc-test-node-new_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS

@hoopoepg
Copy link
Contributor Author

hoopoepg commented Jul 9, 2019

out-of-memory fail
bot:mlx:retest

@mellanox-github
Copy link
Contributor

Test FAILed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11125/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: FAILED on 2 of 33 workers (click for details)

Note: the logs will be deleted after 16-Jul-2019

Agent/Stage Status
_main ❌ FAILURE
boo31_W3 ❌ FAILURE
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-gpu_W0 ✔️ SUCCESS
hpc-test-node-gpu_W1 ✔️ SUCCESS
hpc-test-node-gpu_W2 ✔️ SUCCESS
hpc-test-node-gpu_W3 ✔️ SUCCESS
hpc-test-node-legacy_W0 ✔️ SUCCESS
hpc-test-node-legacy_W1 ✔️ SUCCESS
hpc-test-node-legacy_W2 ✔️ SUCCESS
hpc-test-node-legacy_W3 ✔️ SUCCESS
hpc-test-node-new_W0 ✔️ SUCCESS
hpc-test-node-new_W1 ✔️ SUCCESS
hpc-test-node-new_W2 ✔️ SUCCESS
hpc-test-node-new_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS

@dmitrygx
Copy link
Member

dmitrygx commented Jul 9, 2019

bot:mlx:retest

@mellanox-github
Copy link
Contributor

Test PASSed.
See http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/11131/ for details (Mellanox internal link).

@mellanox-github
Copy link
Contributor

Mellanox CI: PASSED on 33 workers (click for details)

Note: the logs will be deleted after 16-Jul-2019

Agent/Stage Status
_main ✔️ SUCCESS
boo31_W0 ✔️ SUCCESS
boo31_W1 ✔️ SUCCESS
boo31_W2 ✔️ SUCCESS
boo31_W3 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W0 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W1 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W2 ✔️ SUCCESS
hpc-arm-cavium-jenkins_W3 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W0 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W1 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W2 ✔️ SUCCESS
hpc-arm-hwi-jenkins_W3 ✔️ SUCCESS
hpc-test-node-gpu_W0 ✔️ SUCCESS
hpc-test-node-gpu_W1 ✔️ SUCCESS
hpc-test-node-gpu_W2 ✔️ SUCCESS
hpc-test-node-gpu_W3 ✔️ SUCCESS
hpc-test-node-legacy_W0 ✔️ SUCCESS
hpc-test-node-legacy_W1 ✔️ SUCCESS
hpc-test-node-legacy_W2 ✔️ SUCCESS
hpc-test-node-legacy_W3 ✔️ SUCCESS
hpc-test-node-new_W0 ✔️ SUCCESS
hpc-test-node-new_W1 ✔️ SUCCESS
hpc-test-node-new_W2 ✔️ SUCCESS
hpc-test-node-new_W3 ✔️ SUCCESS
hpc-test-node-upstream_W0 ✔️ SUCCESS
hpc-test-node-upstream_W1 ✔️ SUCCESS
hpc-test-node-upstream_W2 ✔️ SUCCESS
hpc-test-node-upstream_W3 ✔️ SUCCESS
r-vmb-ppc-jenkins_W0 ✔️ SUCCESS
r-vmb-ppc-jenkins_W1 ✔️ SUCCESS
r-vmb-ppc-jenkins_W2 ✔️ SUCCESS
r-vmb-ppc-jenkins_W3 ✔️ SUCCESS

@yosefe yosefe merged commit 4acd347 into openucx:master Jul 10, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

segfault with MPICH + UCX 1.6.0 and malloc hooks
5 participants