Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
spm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
spm
Merge requests
!24
5 - Dist/SPMM
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
5 - Dist/SPMM
tdelarue/spm:dist/spmm
into
master
Overview
51
Commits
2
Pipelines
0
Changes
2
Merged
Tony Delarue
requested to merge
tdelarue/spm:dist/spmm
into
master
5 years ago
Overview
6
Commits
2
Pipelines
0
Changes
2
Expand
SpmMatMat / SpmMatVec routines now support DoF and distributed
SpmGenRhs now includes the generation of from a random x by multiplication
Edited
4 years ago
by
Mathieu Faverge
1
0
Merge request reports
Viewing commit
25e571c5
Show latest version
2 files
+
1
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
25e571c5
Rebase probleme
· 25e571c5
Tony Delarue
authored
5 years ago
include/spm/spm_mpi.h deleted
100644 → 0
+
0
−
40
Options
/**
*
* @file spm/spm_mpi.h
*
* @copyright 2013-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
* Definitions MPI interface for the SPM
*
* @version 6.0.0
* @author Mathieu Faverge
* @author Tony Delarue
* @author Pierre Ramet
* @date 2020-02-27
*
*/
#ifndef _spm_mpi_h_
#define _spm_mpi_h_
#if defined(SPM_WITH_MPI)
#include
<mpi.h>
#define SPM_MPI_COMPLEX64 MPI_C_DOUBLE_COMPLEX
#define SPM_MPI_COMPLEX32 MPI_C_FLOAT_COMPLEX
#define SPM_MPI_DOUBLE MPI_DOUBLE
#define SPM_MPI_FLOAT MPI_FLOAT
typedef
MPI_Comm
SPM_Comm
;
#else
typedef
uintptr_t
SPM_Comm
;
#ifndef MPI_COMM_WORLD
#define MPI_COMM_WORLD 0
#endif
#endif
/* SPM_WITH_MPI */
#endif
/* _spm_mpi_h_ */
Loading