在具有大型数组的函数上使用线程时出现分段错误-C++

Segmentation fault when using threads on function with large arrays -C++

我是第一次使用线程,每当调用的函数采用非常大的数组时遇到奇怪的分段错误。

#include <iostream>       
#include <thread>
#include <cmath>

const int dimension = 100000; // Dimension of the array
// Create a simple function of an array
void absolut(double *vec) { 
    double res = 0.; 
    for (int i = 0; i < dimension; i++) { 
        res += vec[i] * vec[i];
    }
    std::cout << std::sqrt(res) << std::endl;
}

int main() {
    // Define arrays
    double p[dimension], v[dimension]; 
    for (int i = 1; i < dimension; i++) { 
        p[i] = 1./double(i);
        v[i] = 1./double(i)/double(i);
    }
    // use multithreading
    std::thread t1(absolut, p);
    std::thread t2(absolut, v); 

    t1.join(); 
    t2.join();

    return 0;
}

程序像这样运行良好,但如果我将数组的 dimension 增加 10 倍,则会出现分段错误。有人知道为什么会发生这种情况以及如何解决吗?

double p* = new double[dimension];
double v* = new double[dimension];

我认为这编译是因为编译器定义的大小限制可能使用动态分配。