Jean-Michel Batto 2 months ago
parent
commit
f76736d99c
7 changed files with 219 additions and 1 deletions
  1. 21 0
      Makefile
  2. 71 0
      Matrix.xmptype.h
  3. 1 1
      README.md
  4. BIN
      histo
  5. 104 0
      histo.c
  6. 11 0
      input.txt
  7. 11 0
      input.txt.1

+ 21 - 0
Makefile

@@ -0,0 +1,21 @@
+CC=gcc
+XMPCC=xmpcc
+LIBS=-L/usr/lib -lmpi
+INCL=-I /usr/lib/openmpi/include
+
+OBJP=histo.o
+
+all: histo
+
+histo.o: histo.c
+	$(XMPCC) -c histo.c
+
+histo: $(OBJP)
+	$(XMPCC) -o histo $(OBJP) $(LIBS)
+
+run: histo 
+	mpirun --mca orte_base_help_agregate 0 -host mpihead -n 1 /usr/local/var/mpishare/GLCS-CM6-TDXMP/histo
+	 
+
+clean:
+	rm *.o histo

+ 71 - 0
Matrix.xmptype.h

@@ -0,0 +1,71 @@
+/* -*- mode: c++; c-file-style: "engine"; c-basic-offset: 4; indent-tabs-mode: nil -*- */
+/**
+ * @file
+ * @brief Matrix parameter wrapper for XMP
+ *
+ *
+ *
+ * 2012-01-12
+ *
+ */
+#ifndef MATRIX_XMP_TYPE_HH
+#define MATRIX_XMP_TYPE_HH 1
+
+#include <stdlib.h>
+#include <stdbool.h>
+#include <mpi.h>
+
+typedef double XMP_Matrix; /* Declaration of parameter type in XMP ( XMP_type )*/
+typedef double* Matrix; /* Declaration of parameter type for import/export functions (type) */
+
+/* */
+static MPI_Datatype Matrix_MPI_Type()
+{
+
+	return MPI_DOUBLE;
+}
+
+// param_import / export definition for types that need data distribution in XMP
+
+static bool Matrix_import(Matrix param, char* filename, const MPI_Datatype motif, const int size)
+{
+	int ack;
+	MPI_File   fh;
+	MPI_Status status;
+
+
+	ack = MPI_File_open(MPI_COMM_WORLD,filename,MPI_MODE_RDONLY,MPI_INFO_NULL,&fh);
+
+	if (ack != MPI_ERR_NO_SUCH_FILE)
+	{
+		MPI_File_set_view(fh, 0, MPI_DOUBLE, motif,"native", MPI_INFO_NULL);
+		MPI_File_read_all(fh, param, size, MPI_DOUBLE, &status);
+		MPI_File_close(&fh);
+		return true;
+	}
+
+	MPI_File_close(&fh);
+	return false;
+}
+
+static bool Matrix_export(const Matrix param, char* filename, const MPI_Datatype motif, const int size, MPI_Comm Communicator)
+{
+	int ack;
+	MPI_File   fh;
+	MPI_Status status;
+
+	ack = MPI_File_open(Communicator,filename,MPI_MODE_WRONLY | MPI_MODE_CREATE,MPI_INFO_NULL,&fh);
+
+	if (ack != MPI_ERR_NO_SUCH_FILE)
+	{
+		MPI_File_set_view(fh, 0, MPI_DOUBLE, motif ,"native", MPI_INFO_NULL);
+		MPI_File_write_all(fh, param, size, MPI_DOUBLE, &status);
+		MPI_File_close(&fh);
+		return true;
+	}
+
+	MPI_File_close(&fh);
+	return false;
+}
+
+#endif

+ 1 - 1
README.md

@@ -1,2 +1,2 @@
-# GLCS-CM6-TDXMP
+# xmpworkbench3
 

BIN
histo


+ 104 - 0
histo.c

@@ -0,0 +1,104 @@
+#include "Matrix.xmptype.h"
+#include <math.h>
+#include <mpi.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h> // for usleep
+#include <xmp.h>
+
+#pragma xmp nodes p(1)
+#pragma xmp template t[ : ]
+#pragma xmp distribute t(block) onto p
+
+float *data_in;
+#pragma xmp align data_in[i] with t(i)
+#pragma xmp shadow data_in[*]
+
+int *data_out;
+
+void calcule_histo(float *data, int rows) {
+#pragma xmp loop on t(i)
+  for (int i = 0; i < rows; i++) {
+    int j = (int)data[i];
+    if ((j >= 0) && (j < 20)) {
+      data_out[j]++;
+    }
+  }
+}
+
+int main(int argc, char **argv) {
+  xmp_init_mpi(&argc, &argv);
+
+  FILE *file = fopen("input.txt", "r");
+  if (file == NULL) {
+    fprintf(stderr, "Erreur : impossible d'ouvrir le fichier d'entree\n");
+    return 1;
+  }
+  // Lecture du nombre d'observations
+  int rows;
+  fscanf(file, "%d", &rows);
+  fprintf(stderr, "rows %d\n", rows);
+#pragma xmp template_fix t[rows]
+  data_in = xmp_malloc(xmp_desc_of(data_in), rows);
+
+  data_out = (int *)malloc(20 * sizeof(int));
+  if (data_in == NULL) {
+    fprintf(stderr, "Erreur : impossible d'allouer la memoire pour le vecteur "
+                    "de donnees\n");
+    return 1;
+  }
+
+  // Lecture des données du fichier
+  for (int i = 0; i < rows; i++) {
+    float a;
+    fscanf(file, "%f,", &a);
+    data_in[i] = a;
+  }
+  fclose(file);
+
+  char *processor_name = malloc(256 * sizeof(char));
+  int name_len;
+  MPI_Get_processor_name(processor_name, &name_len);
+  fprintf(stderr, "\ndebut traitement \nProcesseur %d - Nom : %s \n",
+          xmpc_node_num(), processor_name);
+
+  MPI_Barrier(MPI_COMM_WORLD);
+  // Calcul de l'histogramme
+  calcule_histo(data_in, rows);
+
+  MPI_Barrier(MPI_COMM_WORLD);
+
+  usleep(100);
+
+  // Écriture de l'histogramme
+  // Ouverture du fichier de sortie
+  char buffer[100];
+  sprintf(buffer, "output.txt.%i", xmpc_node_num());
+  FILE *output_file = fopen(buffer, "w");
+  if (output_file == NULL) {
+    printf("Erreur : impossible d'ouvrir le fichier de sortie\n");
+    return 1;
+  }
+  for (int i = 0; i < 20; i++) {
+    fprintf(output_file, "%u ", i);
+  }
+  fprintf(output_file, "\n");
+  for (int i = 0; i < 20; i++) {
+    fprintf(output_file, "%u ", data_out[i]);
+  }
+  fprintf(output_file, "\n");
+  fclose(output_file);
+
+  MPI_Barrier(MPI_COMM_WORLD);
+  usleep(100);
+  // Libération de la mémoire
+
+  free(data_in);
+  free(data_out);
+  fprintf(stderr, "\nfin traitement \nProcesseur %d - Nom : %s \n",
+          xmpc_node_num(), processor_name);
+  free(processor_name);
+  xmp_finalize_mpi();
+
+  return 0;
+}

+ 11 - 0
input.txt

@@ -0,0 +1,11 @@
+100
+1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0
+2.0,0.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0
+3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0
+4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0
+5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0
+6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0
+7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0
+8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0
+9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0
+10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0

+ 11 - 0
input.txt.1

@@ -0,0 +1,11 @@
+10
+1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0
+2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0
+3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0
+4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0
+5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0
+6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0
+7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0
+8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0
+9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0
+10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0