Удалил бесполезные файлы

This commit is contained in:
2025-12-11 09:06:48 +00:00
parent 68ea345a35
commit 44f297e55a
2 changed files with 0 additions and 13 deletions

View File

@@ -1,11 +0,0 @@
#include "mpi_utils.hpp"
#include <mpi.h>
#include <iostream>
void mpi_print_basic() {
int rank, size;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
std::cout << "Hello from rank " << rank << " of " << size << std::endl;
}

View File

@@ -1,2 +0,0 @@
#pragma once
void mpi_print_basic();