Matlab crashes using mex-Function and openMP

2 Ansichten (letzte 30 Tage)
Pierre Guilbert
Pierre Guilbert am 9 Jun. 2016
Kommentiert: Junda am 8 Okt. 2024
I have a problem using matlab mexfunction and openMP instructions. I found some related topics but none of them were able to help me.
I want to use openMP with a mex-Function to create a .mexw64 file. But when i use my matlab function, matlab crashes in a brutal way.
Theses are my codes:
C++ code
#include "mex.h"
#include <iostream>
#include <omp.h>
void mexFunction(int nlhs,
mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
{
#pragma omp parallel default(shared)
{
}
mexPrintf("Hi !\n", N);
}
Matlab code:
clear all, close all, clc;
testopenMP();
clear mex;
When i call my function testopenMP matlab crashes. But if I comment the "#pragma omp parallel" instruction, everything work fine:
#include "mex.h"
#include <iostream>
#include <omp.h>
void mexFunction(int nlhs,
mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
{
//#pragma omp parallel default(shared)
{
}
mexPrintf("Hi !\n", N);
}
Another important point, with the pragma omp parallel intruction, sometimes the program works, and sometimes it crashes...
Do you have any ideas of what crashes matlab ? Any help is welcolme
  4 Kommentare
Matthew Hopcroft
Matthew Hopcroft am 7 Apr. 2020
I just discovered that having a mexPrintf statement inside a OMP PARALLEL construct causes the program to crash. Move the print statement outside the parallel construct and it runs fine.
Junda
Junda am 8 Okt. 2024
I met the same issue. Seems like MEX does not support mexPrintf inside OpenMP parallel region. Litterally can't find a way to output any information inside parallel region.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Write C Functions Callable from MATLAB (MEX Files) finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by