User Tools

Site Tools


c:pthreads:parallel-increment-vector

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
c:pthreads:parallel-increment-vector [2024/01/16 23:55] odeftac:pthreads:parallel-increment-vector [2024/01/16 23:59] (current) odefta
Line 8: Line 8:
 #include <pthread.h> #include <pthread.h>
  
-#define NUM_THREADS 4  // Numărul de thread-uri +#define NUM_THREADS 4  // Number of threads to use 
-#define VECTOR_SIZE 100  // Dimensiunea vectorului+#define VECTOR_SIZE 100  // Size of the array
  
-// Structura pentru a stoca informațiile pentru fiecare thread+// Structure to pass information to threads
 typedef struct { typedef struct {
-    int start;  // Indexul de început pentru acest thread +    int start;  // Starting index for this thread 
-    int end;    // Indexul de sfârșit pentru acest thread +    int end;    // Ending index for this thread 
-    int *vector;  // Pointer către vector+    int *vector;  // Pointer to the array
 } ThreadData; } ThreadData;
  
-// Funcția executată de fiecare thread+// Function that each thread will execute
 void *increment_vector(void *arg) { void *increment_vector(void *arg) {
     ThreadData *data = (ThreadData *)arg;     ThreadData *data = (ThreadData *)arg;
  
 +    // Increment the array elements in the specified range
     for (int i = data->start; i < data->end; i++) {     for (int i = data->start; i < data->end; i++) {
         data->vector[i]++;         data->vector[i]++;
Line 35: Line 36:
     int segment_size = VECTOR_SIZE / NUM_THREADS;     int segment_size = VECTOR_SIZE / NUM_THREADS;
  
-    // Inițializează vectorul+    // Initialize the array
     for (int i = 0; i < VECTOR_SIZE; i++) {     for (int i = 0; i < VECTOR_SIZE; i++) {
         vector[i] = i;         vector[i] = i;
     }     }
  
-    // Creează thread-urile+    // Create threads and assign them segments of the array
     for (int i = 0; i < NUM_THREADS; i++) {     for (int i = 0; i < NUM_THREADS; i++) {
         thread_data[i].start = i * segment_size;         thread_data[i].start = i * segment_size;
Line 49: Line 50:
     }     }
  
-    // Așteaptă ca thread-urile să termine+    // Wait for all threads to complete
     for (int i = 0; i < NUM_THREADS; i++) {     for (int i = 0; i < NUM_THREADS; i++) {
         pthread_join(threads[i], NULL);         pthread_join(threads[i], NULL);
     }     }
  
-    // Afișează vectorul incrementat+    // Display the incremented array
     for (int i = 0; i < VECTOR_SIZE; i++) {     for (int i = 0; i < VECTOR_SIZE; i++) {
         printf("%d\n", vector[i]);         printf("%d\n", vector[i]);
     }     }
 +
     return 0;     return 0;
 } }
c/pthreads/parallel-increment-vector.1705442120.txt.gz · Last modified: 2024/01/16 23:55 by odefta