Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-orbit
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Katerina Roukounaki
cloud-orbit
Commits
15522eb5
Commit
15522eb5
authored
Jan 12, 2015
by
Aggelos Giantsios
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add target for profiling with threadscope
parent
990cb043
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
.gitignore
.gitignore
+1
-0
Makefile
Makefile
+4
-2
No files found.
.gitignore
View file @
15522eb5
...
@@ -9,5 +9,6 @@
...
@@ -9,5 +9,6 @@
*.hp
*.hp
*.prof
*.prof
*.ps
*.ps
*.eventlog
orbit
orbit
OrbitTests
OrbitTests
Makefile
View file @
15522eb5
.PHONY
:
FORCE clean distclean
.PHONY
:
FORCE clean distclean
COMPILE_OPTS
=
-Wall
-rtsopts
-O2
-threaded
COMPILE_OPTS
=
-Wall
-rtsopts
-O2
-threaded
orbit
:
FORCE
orbit
:
FORCE
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
...
@@ -12,12 +11,15 @@ prof: distclean
...
@@ -12,12 +11,15 @@ prof: distclean
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
&&
\
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
&&
\
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
-prof
-osuf
p_o
ghc
$(COMPILE_OPTS)
--make
Bench.hs
-main-is
Bench
-o
orbit
-prof
-osuf
p_o
threadscope
:
ghc
$(COMPILE_OPTS)
-eventlog
--make
Bench.hs
-main-is
Bench
-o
orbit
prof-results
:
prof-results
:
hp2ps
-e8in
-c
orbit
&&
\
hp2ps
-e8in
-c
orbit
&&
\
echo
"The memory profiling graph is in orbit.ps"
echo
"The memory profiling graph is in orbit.ps"
clean
:
clean
:
$(RM)
*
.swp
*
~
*
.hi
*
.o
*
.dyn_hi
*
.dyn_o
*
.p_o
*
.aux
*
.hp
*
.prof
$(RM)
*
.swp
*
~
*
.hi
*
.o
*
.dyn_hi
*
.dyn_o
*
.p_o
*
.aux
*
.hp
*
.prof
*
.eventlog
distclean
:
clean
distclean
:
clean
$(RM)
orbit OrbitTests
$(RM)
orbit OrbitTests
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment