3

我知道 C# 主程序的堆栈大小为 1 MB(32 位和任何)或 4 MB(64 位),请参阅为什么 C# 中的堆栈大小恰好为 1 MB?

BackgroundWorker DoWork线程的默认堆栈大小是多少?

除了创建另一个线程之外,有没有办法改变线程的堆栈大小,BackgroundWorker DoWork如下例所示:

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{   
    Thread thread = new Thread(delegate()
    {
        // do work with larger stack size
    }, 8192 * 1024);
    thread.Start();
    thread.Join();
}

我使用 a 是BackgroundWorker因为我有一个Windows Forms应用程序,我在DoWork事件中进行一些计算。我这样做是因为我想向 GUI 的状态行报告,并且我希望用户可以取消计算。

我收到堆栈溢出错误,因为我正在调用高度递归的英特尔 MKLs LAPACKE_dtrtri,请参阅 http://www.netlib.org/lapack/explore-html/df/d5c/lapacke__dtrtri_8c_source.html

以下代码显示了我如何调用英特尔 MKL:

public static double[,] InvTriangularMatrix(double[,] a, bool isupper)
{
    int n1 = a.GetLength(0);
    int n2 = a.GetLength(1);
    if (n1 != n2) throw new System.Exception("Matrix must be square");
    double[,] b = Copy(a);
    int matrix_layout = 101; // row-major arrays
    char uplo = isupper ? 'U' : 'L';
    char diag = 'N';
    int lda = Math.Max(1, n1);
    int info = _mkl.LAPACKE_dtrtri(matrix_layout, uplo, diag, n1, b, lda);
    if (info > 0) throw new System.Exception("The " + info + "-th diagonal element of A is zero, A is singular, and the inversion could not be completed");
    if (info < 0) throw new System.Exception("Parameter " + (-info) + " had an illegal value");
    return b;
}

[DllImport(DLLName, CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, SetLastError = false)]
internal static extern int LAPACKE_dtrtri(
    int matrix_layout, char uplo, char diag, lapack_int n, [In, Out] double[,] a, int lda);

在我的事件InvTriangularMatrix中调用。DoWork当我没有设置堆栈大小时,LAPACKE_dtrtri函数内部出现堆栈溢出错误。

矩阵的大小可以在 1000 x 1000 到 100000 x 100000 之间。如果矩阵大于 65535 x 65535,请参阅2d-Array with more than 65535^2 elements --> Array dimensions exceeded supported range

4

1 回答 1

1

事件内部的堆栈大小BackgroundWorker DoWork与主线程相同。

教授:

将构建后事件中的堆栈大小设置为 8 MB,例如:

"$(DevEnvDir)..\..\VC\bin\editbin.exe" /STACK:8388608 "$(TargetPath)"

然后使用以下代码询问堆栈大小:

[DllImport("kernel32.dll")]
internal static extern void GetCurrentThreadStackLimits(out uint lowLimit, out uint highLimit);


public static uint GetStackSize()
{
    uint low, high;
    GetCurrentThreadStackLimits(out low, out high);
    return high - low;
}

GetStackSize在主程序中使用,DoWork在这两种情况下都返回 8 MB 或您使用EDITBIN /STACK.

于 2019-06-06T11:59:25.197 回答