Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbai7 authored Nov 22, 2016
1 parent cb3d2ec commit 568d6c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Compile and link the provided demonstration example in '*mp_demo1.f90*' using th
gfortran MemoryProfiler.f90 mp_demo1.f90 -o mp_demo1
```

This example shows for a simple demonstration case how to profile a module's allocatable arrays through an interanl '*mem_profiler_t*' variable
This example shows for a simple demonstration case how to profile a module's allocatable arrays through an internal '*mem_profiler_t*' variable
```
!> simple dense matrix solver Ax=b module.
Module matrix_solver
Expand Down Expand Up @@ -282,7 +282,7 @@ program mp_demo1
end program mp_demo1
```

The first section of the output file '*mp_matrix_solver.txt*' is shown below. It monitors the sequence of allocations (+ sign in first column) and deallocation (- sign in first column) and where they occur. Hence, this straightforwardly accelerates detection of memory leaks in large fortran based software projects.
The first section of the output file '*mp_matrix_solver.txt*' is shown below. It monitors the sequence of allocations (+ sign in first column) and deallocations (- sign in first column) and where they occur. Hence, this straightforwardly accelerates detection of memory leaks in large fortran based software projects.
```
Mode Array Subroutine Module
---- -------- ---------- ------
Expand Down

0 comments on commit 568d6c8

Please sign in to comment.