Coder Social home page Coder Social logo

Fix L7_ASSERT in L7_Update about clamr HOT 4 CLOSED

lanl avatar lanl commented on July 29, 2024
Fix L7_ASSERT in L7_Update

from clamr.

Comments (4)

brobey avatar brobey commented on July 29, 2024

Yeah, I'm seeing it. It means it is getting the neighbors wrong. mpirun -n 4 ./clamr_quo is running fine. I'll work on it


From: Samuel K. Gutierrez [[email protected]]
Sent: Monday, November 04, 2013 8:21 PM
To: losalamos/CLAMR
Subject: [CLAMR] Fix L7_ASSERT in L7_Update (#11)

Hi Bob,

Are you seeing these?

$ mpirun -n 3 ./clamr_quo

System Info
Nodes: 1
NUMA Nodes: 0
Sockets: 1
Cores: 1
PUs: 1
MPI Procs on Node: 3

MPI_COMM_WORLD ranks in subComm: 0
rank: 0 is subComm rank: 0
Size comm world 3 subComm 1
--- num openmp threads: 1
Mass of initialized cells equal to 92652.9978195
CPU: setup time time was 0.1072 0.1077 0.1070 s
Memory used in startup 7832 7812 7808 kB
Memory peak in startup 7832 7812 7808 kB
Memory free at startup 1521316 1521316 1521316 kB
Memory available at startup 2043828 2043828 2043828 kB
Iteration 0 timestep n/a Sim Time 0.0 cells 17028 Mass Sum 92652.9978195
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
DEBUG -- cell 6117 lev 2


Reply to this email directly or view it on GitHubhttps://github.com//issues/11.

from clamr.

brobey avatar brobey commented on July 29, 2024

Fixed. At least partially. The l7 load balance handle was being freed before it was finished
being used.


From: Samuel K. Gutierrez [[email protected]]
Sent: Monday, November 04, 2013 8:21 PM
To: losalamos/CLAMR
Subject: [CLAMR] Fix L7_ASSERT in L7_Update (#11)

Hi Bob,

Are you seeing these?

$ mpirun -n 3 ./clamr_quo

System Info
Nodes: 1
NUMA Nodes: 0
Sockets: 1
Cores: 1
PUs: 1
MPI Procs on Node: 3

MPI_COMM_WORLD ranks in subComm: 0
rank: 0 is subComm rank: 0
Size comm world 3 subComm 1
--- num openmp threads: 1
Mass of initialized cells equal to 92652.9978195
CPU: setup time time was 0.1072 0.1077 0.1070 s
Memory used in startup 7832 7812 7808 kB
Memory peak in startup 7832 7812 7808 kB
Memory free at startup 1521316 1521316 1521316 kB
Memory available at startup 2043828 2043828 2043828 kB
Iteration 0 timestep n/a Sim Time 0.0 cells 17028 Mass Sum 92652.9978195
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:1] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:2] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
[pe:0] L7 Error L7_UPDATE (/home/samuel/devel/CLAMR/l7/l7_update.c:142[!(l7_id > 0)]) (l7_id <= 0) (-1)
DEBUG -- cell 6117 lev 2


Reply to this email directly or view it on GitHubhttps://github.com//issues/11.

from clamr.

brobey avatar brobey commented on July 29, 2024

Fixed. The L7 load balance handle was being freed before it was finished being used.

from clamr.

samuelkgutierrez avatar samuelkgutierrez commented on July 29, 2024

Looks good from the l7 front (no more assertions). Thanks!

from clamr.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.