Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
uva
Commits
897a1d64
Commit
897a1d64
authored
Feb 09, 2011
by
Sander Mathijs van Veen
Browse files
Options
Browse Files
Download
Plain Diff
Merged makefile.
parents
cadc6ad6
9e7fee90
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
26 deletions
+26
-26
simmod/ass1/.gitignore
simmod/ass1/.gitignore
+3
-0
simmod/ass1/Makefile
simmod/ass1/Makefile
+10
-9
simmod/ass1/sum.c
simmod/ass1/sum.c
+13
-17
No files found.
simmod/ass1/.gitignore
View file @
897a1d64
sum.float
sum.double
sum
speed.*.*
speed.*.*
speed
speed
fp
fp
...
...
simmod/ass1/Makefile
View file @
897a1d64
CC
=
gcc
CC
=
gcc
FLAGS
=
-Wall
-Wextra
-std
=
c99
-pedantic
-O0
-lm
FLAGS
=
-Wall
-Wextra
-std
=
c99
-pedantic
-O0
-lm
TYPES
=
float double LD
SPEED_TYPES
=
float double LD
SUM_TYPES
=
float double
OPS
=
ADD DIV MULT SQRT
OPS
=
ADD DIV MULT SQRT
all
:
fp speed report.pdf
fd
pr
all
:
fp speed report.pdf
sum
pr
%.pdf
:
%.tex
%.pdf
:
%.tex
pdflatex
$^
pdflatex
$^
pdflatex
$^
pdflatex
$^
speed
:
speed.c
speed
:
speed.c
for
t
in
$(TYPES)
;
do
\
for
t
in
$(
SPEED_
TYPES)
;
do
\
for
o
in
$(OPS)
;
do
\
for
o
in
$(OPS)
;
do
\
sed
"s#{TYPE}#
$$
t#"
$^
|
sed
"s#{OP}#
$$
o#"
>
speed.
$$
t.
$$
o.c
;
\
sed
"s#{TYPE}#
$$
t#"
$^
|
sed
"s#{OP}#
$$
o#"
>
speed.
$$
t.
$$
o.c
;
\
$(CC)
$(FLAGS)
-o
speed.
$$
t.
$$
o speed.
$$
t.
$$
o.c
;
\
$(CC)
$(FLAGS)
-o
speed.
$$
t.
$$
o speed.
$$
t.
$$
o.c
;
\
...
@@ -25,11 +26,11 @@ pr: extra_precision.o
...
@@ -25,11 +26,11 @@ pr: extra_precision.o
fp
:
floating_point.o
fp
:
floating_point.o
$(CC)
$(FLAGS)
-o
$@
$^
$(CC)
$(FLAGS)
-o
$@
$^
fd
:
float_vs_double
.c
sum
:
sum
.c
for
t
in
float double
;
do
\
for
t
in
$(SUM_TYPES)
;
do
\
sed
"s#{TYPE}#
$$
t#"
$^
>
fd
.
$$
t.c
;
\
sed
"s#{TYPE}#
$$
t#"
$^
>
sum
.
$$
t.c
;
\
$(CC)
$(FLAGS)
-o
fd.
$$
t fd
.
$$
t.c
;
\
gcc
$(FLAGS)
-o
sum.
$$
t sum
.
$$
t.c
;
\
rm
fd
.
$$
t.c
;
\
rm
sum
.
$$
t.c
;
\
done
;
done
;
touch
$@
touch
$@
...
@@ -41,4 +42,4 @@ fd: float_vs_double.c
...
@@ -41,4 +42,4 @@ fd: float_vs_double.c
clean
:
clean
:
rm
-vf
*
.o
*
.i
*
.s fp fd
*
speed speed.
*
.
*
floating_point
\
rm
-vf
*
.o
*
.i
*
.s fp fd
*
speed speed.
*
.
*
floating_point
\
report.pdf
*
.aux
*
.log
*
.toc
report.pdf
*
.aux
*
.log
*
.toc
sum
sum.float sum.double
simmod/ass1/
float_vs_double
.c
→
simmod/ass1/
sum
.c
View file @
897a1d64
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
{
TYPE
}
sum_forward
(
int
N
);
{
TYPE
}
sum_backward
(
int
N
);
int
main
(
void
)
{
puts
(
"Using type {TYPE}."
);
puts
(
"Forward summation:"
);
printf
(
"N = 1e8: %e
\n
"
,
sum_forward
(
1e8
));
printf
(
"N = 2e8: %e
\n
"
,
sum_forward
(
2e8
));
puts
(
"Backward summation:"
);
printf
(
"N = 1e8: %e
\n
"
,
sum_backward
(
1e8
));
printf
(
"N = 2e8: %e
\n
"
,
sum_backward
(
2e8
));
return
0
;
}
{
TYPE
}
sum_forward
(
int
N
)
{
{
TYPE
}
sum_forward
(
int
N
)
{
{
TYPE
}
sum
=
0
;
{
TYPE
}
sum
=
0
;
...
@@ -36,3 +19,16 @@ int main(void) {
...
@@ -36,3 +19,16 @@ int main(void) {
return
sum
;
return
sum
;
}
}
int
main
(
void
)
{
puts
(
"Using type {TYPE}."
);
puts
(
"Forward summation:"
);
printf
(
"N = 1e8: %e
\n
"
,
sum_forward
(
1e8
));
printf
(
"N = 2e8: %e
\n
"
,
sum_forward
(
2e8
));
puts
(
"Backward summation:"
);
printf
(
"N = 1e8: %e
\n
"
,
sum_backward
(
1e8
));
printf
(
"N = 2e8: %e
\n
"
,
sum_backward
(
2e8
));
return
0
;
}
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