-
Notifications
You must be signed in to change notification settings - Fork 0
/
P1_ex3b.c
96 lines (77 loc) · 2.23 KB
/
P1_ex3b.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <omp.h>
/*
* Integrantes:
* - Leonardo de Jesus Diz Conde
* - Lucas Kenji Uezu
* - Victor Yuji Saito
*/
void dense_mat_vec(int m, int n, double *x, double *A, double *y);
int main() {
srand(time(NULL));
int m, n; // usuario input
double *x, *y; // calcular tam com m e n e atribuir valores aleatorios
double **A; // calcular dimensoes com m e n e atribuir valores aleatorios
// aceita os valores de m e n da linha de comando em tempo de execução
printf("\nNúmero de linhas: ");
scanf("%d", &m);
printf("Número de colunas: ");
scanf("%d", &n);
// Verificação da atribuição
printf("Linhas: %d, Colunas: %d\n", m, n);
// aloca os vetores x e y
x = malloc(m * sizeof(int));
y = malloc(n * sizeof(int));
// aloca a matriz A
A = malloc(m * sizeof(int *));
#pragma omp parallel for
for (int i = 0; i < m; ++i) {
A[i] = malloc(n * sizeof(int));
}
// inicializa y com alguns valores adequados
printf("\nInicializa valores no Y e A");
printf("\nVetor Y: ");
#pragma omp parallel for
for (int i = 0; i < n; ++i) {
y[i] = rand() % 10;;
printf("%0.1lf ", y[i]);
}
// inicializa A com alguns valores adequados
printf("\n\nMatriz A: ");
#pragma omp parallel for
for (int lin = 0; lin < m; lin++) {
printf("\n");
for (int col = 0; col < n; col++) {
A[lin][col] = rand() % 10;
printf("%0.1lf ", A[lin][col]);
}
}
printf("\n");
// chama a função dense_mat_vec
dense_mat_vec(m, n, x, *A, y);
// prints para ver resultado do X depois
printf("\nPrint para ver resultado depois");
printf("\nVetor X: ");
#pragma omp parallel for
for (int i = 0; i < m; ++i) {
printf("%0.1lf ", x[i]);
}
printf("\n");
// libera memória
free(x);
free(y);
free(A);
return 0;
}
void dense_mat_vec(int m, int n, double *x, double *A, double *y) {
int i, j;
#pragma omp parallel for
for (i = 0; i < m; i++) {
double tmp = 0.0;
for (j = 0; j < n; j++)
tmp += A[i * n + j] * y[j];
x[i] = tmp;
}
}