You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
600 B
31 lines
600 B
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <ctime>
|
|
#define SIZE 1024
|
|
|
|
void vector_add(float* A, float* B, float* C, int size){
|
|
for(int i=0;i<size;i++){
|
|
C[i]=A[i]+B[i];
|
|
}
|
|
}
|
|
|
|
int main(){
|
|
float A[SIZE],B[SIZE],C[SIZE];
|
|
|
|
//初始化
|
|
srand(time(NULL));
|
|
for(int i=0;i<SIZE;i++){
|
|
A[i]=rand()%100;
|
|
B[i]=rand()%100;
|
|
}
|
|
|
|
//计时并输出
|
|
clock_t start=clock();
|
|
vector_add(A,B,C,SIZE);
|
|
clock_t end=clock();
|
|
printf("初始向量加法时间:%f秒\n",(double)(end-start)/CLOCKS_PER_SEC);
|
|
|
|
return 0;
|
|
}
|
|
|