-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add license headers and release number
- Loading branch information
Showing
11 changed files
with
589 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
Performance Dump Module (perf_dump) | ||
Performance Dump Module (perf-dump) | ||
============================================ | ||
|
||
`libperfdump` is a tool for collecting counter data from all processes in a | ||
cluster and dumping counter values out to an HDF5 file with parallel I/O. | ||
|
||
by Todd Gamblin, [email protected]. | ||
|
||
Building | ||
----------------- | ||
Building with CMake is very simple, but you will need PAPI and HDF5. These | ||
|
@@ -216,3 +218,9 @@ The third is for PnMPI, and can be loaded as a PnMPI module. | |
|
||
|
||
|
||
Release | ||
------------- | ||
|
||
perf-dump is released under an LGPL license. For more details see the LICENSE file. | ||
|
||
`LLNL-CODE-647187` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#include <iostream> | ||
|
||
#include "papi_utils.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#ifndef PAPI_UTILS_H | ||
#define PAPI_UTILS_H | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#include <string> | ||
#include <set> | ||
#include <sstream> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#ifndef PERF_DUMP_H | ||
#define PERF_DUMP_H | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
#!/usr/bin/env python | ||
############################################################################## | ||
# Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory. | ||
# | ||
# This file is part of perf-dump. | ||
# Written by Todd Gamblin, [email protected], All rights reserved. | ||
# LLNL-CODE-647187 | ||
# | ||
# For details, see https://scalability-llnl.github.io/perf-dump | ||
# Please also see the LICENSE file for our notice and the LGPL. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License (as published by | ||
# the Free Software Foundation) version 2.1 dated February 1999. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
# conditions of the GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this program; if not, write to the Free Software Foundation, | ||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
############################################################################## | ||
""" | ||
Plot some time steps from a perf-dump file output from Miranda. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
#!/usr/bin/env python | ||
############################################################################## | ||
# Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory. | ||
# | ||
# This file is part of perf-dump. | ||
# Written by Todd Gamblin, [email protected], All rights reserved. | ||
# LLNL-CODE-647187 | ||
# | ||
# For details, see https://scalability-llnl.github.io/perf-dump | ||
# Please also see the LICENSE file for our notice and the LGPL. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License (as published by | ||
# the Free Software Foundation) version 2.1 dated February 1999. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
# conditions of the GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this program; if not, write to the Free Software Foundation, | ||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
############################################################################## | ||
""" | ||
Process some time steps from a perf-dump file output from Miranda to print the maximum, average, minimu values. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#include <mpi.h> | ||
#include <cstdlib> | ||
#include <iostream> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
////////////////////////////////////////////////////////////////////////////// | ||
// Copyright (c) 2013, Lawrence Livermore National Security, LLC. | ||
// Produced at the Lawrence Livermore National Laboratory. | ||
// | ||
// This file is part of perf-dump. | ||
// Written by Todd Gamblin, [email protected], All rights reserved. | ||
// LLNL-CODE-647187 | ||
// | ||
// For details, see https://scalability-llnl.github.io/perf-dump | ||
// Please also see the LICENSE file for our notice and the LGPL. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (as published by | ||
// the Free Software Foundation) version 2.1 dated February 1999. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and | ||
// conditions of the GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
////////////////////////////////////////////////////////////////////////////// | ||
#include <mpi.h> | ||
#include <cstdlib> | ||
#include <iostream> | ||
|