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
5c137bff
Commit
5c137bff
authored
Feb 09, 2011
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished code of question 3.
parent
edff8604
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
20 deletions
+29
-20
simmod/ass1/.gitignore
simmod/ass1/.gitignore
+3
-0
simmod/ass1/Makefile
simmod/ass1/Makefile
+12
-6
simmod/ass1/sum.c
simmod/ass1/sum.c
+14
-14
No files found.
simmod/ass1/.gitignore
View file @
5c137bff
sum.float
sum.double
sum
speed.*.*
speed
fp
...
...
simmod/ass1/Makefile
View file @
5c137bff
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
all
:
fp speed report.pdf
float_double
all
:
fp speed report.pdf
sum
%.pdf
:
%.tex
pdflatex
$^
pdflatex
$^
speed
:
speed.c
for
t
in
$(TYPES)
;
do
\
for
t
in
$(
SPEED_
TYPES)
;
do
\
for
o
in
$(OPS)
;
do
\
sed
"s#{TYPE}#
$$
t#"
$^
|
sed
"s#{OP}#
$$
o#"
>
speed.
$$
t.
$$
o.c
;
\
gcc
$(FLAGS)
-o
speed.
$$
t.
$$
o speed.
$$
t.
$$
o.c
;
\
...
...
@@ -21,8 +22,13 @@ speed: speed.c
fp
:
floating_point.o
gcc
$(FLAGS)
-o
$@
$^
float_double
:
float_vs_double.o
gcc
$(FLAGS)
-o
$@
$^
sum
:
sum.c
for
t
in
$(SUM_TYPES)
;
do
\
sed
"s#{TYPE}#
$$
t#"
$^
>
sum.
$$
t.c
;
\
gcc
$(FLAGS)
-o
sum.
$$
t sum.
$$
t.c
;
\
rm
sum.
$$
t.c
;
\
done
;
touch
$@
%.o
:
%.c
gcc
$(FLAGS)
-o
$@
-c
$^
...
...
@@ -31,4 +37,4 @@ float_double: float_vs_double.o
gcc
$(FLAGS)
-o
$*
$^
clean
:
rm
-vf
*
.o
*
.i
*
.s fp speed speed.
*
.
*
floating_point
rm
-vf
*
.o
*
.i
*
.s fp speed speed.
*
.
*
floating_point
sum
sum.float sum.double
simmod/ass1/
float_vs_double
.c
→
simmod/ass1/
sum
.c
View file @
5c137bff
#include <stdlib.h>
#include <stdio.h>
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
=
0
;
...
...
@@ -32,3 +18,17 @@ int main(void) {
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