Skip to content

Instantly share code, notes, and snippets.

View JosephLeyva's full-sized avatar
🎯
Focusing

JosephLeyva

🎯
Focusing
  • Pinnacle Aerospace Inc
  • Hermosillo, Sonora
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include <mpi.h>
#include <stdio.h>
void main()
{
int rank, size,variable;
MPI_Init(NULL, NULL);
MPI_Comm_size(MPI_COMM_WORLD, &size); // Total of processes
#include<stdio.h>
#include<mpi.h>
void main (){
int rank, size;
MPI_Init(NULL,NULL);
MPI_Comm_rank(MPI_COMM_WORLD,&rank ); // ID of the proccess
MPI_Comm_size(MPI_COMM_WORLD,&size ); // number of process
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JosephLeyva
JosephLeyva / PY0101EN-5.1_Intro_API.ipynb
Created March 30, 2021 18:13
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JosephLeyva
JosephLeyva / PY0101EN-5-2-Numpy2D.ipynb
Created March 30, 2021 17:50
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JosephLeyva
JosephLeyva / PY0101EN-5.2_notebook_quizz_numpy2d.ipynb
Created March 30, 2021 17:10
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JosephLeyva
JosephLeyva / PY0101EN-5-1-Numpy1D.ipynb
Created March 30, 2021 04:13
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JosephLeyva
JosephLeyva / PY0101EN-5.1_notebook_quizz_numpy1d.ipynb
Created March 30, 2021 03:53
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.