提交 87b14de0 编写于 作者: B Ben

Add additional compilation notes

上级 f1d5b74c
#include <omp.h>
#include <stdio.h>
#include <stdlib.h> //malloc
#include <string.h> //memset
#include "openmp_getmax.c"
int main(){
long int max = 1e7;
int *factor_ct = malloc(sizeof(int)*max);
factor_ct[0] = 0;
factor_ct[1] = 1;
for (long int i=2; i< max; i++)
factor_ct[i] = 2;
#pragma omp parallel for
for (long int i=2; i<= max/2; i++)
for (long int scale=2; scale*i < max; scale++) {
#pragma omp atomic update
factor_ct[scale*i]++;
}
int max_factors = get_max_factors(factor_ct, max);
long int tally[max_factors+1];
memset(tally, 0, sizeof(long int)*(max_factors+1));
#pragma omp parallel for
for (long int i=0; i< max; i++){
#pragma omp atomic update
tally[factor_ct[i]]++;
}
for (int i=0; i<=max_factors; i++)
printf("%i\t%li\n", i, tally[i]);
}
/* See compilation notes in atomic_factors.c, openmp_atoms.c, or pthread_factors.c*/
int get_max(int *array, long int max){
int thread_ct = omp_get_max_threads();
int maxes[thread_ct];
......
/* Compile with:
export CFLAGS="-g -Wall -std=gnu11 -O3" #the usual.
make strtod
*/
#include "stopif.h"
#include <stdlib.h> //strtod
#include <math.h> //pow
......
/* Compile with:
export CFLAGS="-g -Wall -std=gnu11 -O3" #the usual.
make times_table
*/
#include <math.h> //NAN
#include <stdio.h>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册