add Eratosfen sieve

This commit is contained in:
Edward Emelianov 2022-05-16 17:37:01 +03:00
parent 9a06693673
commit c7f8aa1d86
9 changed files with 52 additions and 0 deletions

0
Socket_CAN/ca/gen.sh Executable file → Normal file
View File

0
Socket_CAN/diff/clientscript Executable file → Normal file
View File

0
Socket_CAN/diff/serverscript Executable file → Normal file
View File

Binary file not shown.

Binary file not shown.

0
Socket_CAN/socketcan0 Executable file → Normal file
View File

Binary file not shown.

0
serialsockCANmanage/www/bin/runSpeedCtrl Executable file → Normal file
View File

52
simple_Eratosfen_sieve.c Normal file
View File

@ -0,0 +1,52 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <omp.h>
#include <usefull_macros.h>
// 1GB of RAM
#define MASKSZ (1073741824L)
#define MNUMBERS (MASKSZ*8)
static uint8_t *masks;
static inline __attribute__((always_inline)) uint8_t get(uint64_t idx){
register uint64_t i = idx >> 3;
register uint8_t j = idx - (i<<3);
return masks[i] & (1<<j);
}
static inline __attribute__((always_inline)) void reset(uint64_t idx){
register uint64_t i = idx >> 3;
register uint8_t j = idx - (i<<3);
masks[i] &= ~(1<<j);
}
int main(){
masks = malloc(MASKSZ);
memset(masks, 0b10101010, MASKSZ); // without even numbers
masks[0] = 0b10101100; // with 2 and withoun 0 and 1
double t0 = dtime();
for(uint64_t i = 3; i < 64; i += 2){
if(get(i)){
for(uint64_t j = i*2; j < MNUMBERS; j += i){
reset(j);
}
}
}
printf("\tfirst 64: %g\n", dtime()-t0);
omp_set_num_threads(8);
#pragma omp parallel for
for(uint64_t i = 65; i < MNUMBERS; i += 2){
if(get(i)){
for(uint64_t j = i*2; j < MNUMBERS; j += i){
reset(j);
}
}
}
printf("\tfull table: %g\n", dtime()-t0);
for(uint64_t i = 0; i < 1000; ++i){
if(get(i)) printf("%zd\n", i);
}
return 0;
}