GithubHelp home page GithubHelp logo

Comments (7)

hideakitai avatar hideakitai commented on June 2, 2024 1

Could you give me a minimal code to compile and reproduce the problem?

from arduinoeigen.

hideakitai avatar hideakitai commented on June 2, 2024 1

Hi @albertbayazidi , sorry for the late reply. I have tried your code and successfully reproduced the problem. However, Eigen's limitation is in the size of rows/cols. Bad alloc exception was thrown from here:

I couldn't find a way to work around it, so I recommend asking the Eigen community.

from arduinoeigen.

albertbayazidi avatar albertbayazidi commented on June 2, 2024 1

I was unable to reproduced the problem for the newest version of Eigen

from arduinoeigen.

hideakitai avatar hideakitai commented on June 2, 2024

How about increasing stack size of main task?

espressif/arduino-esp32#5173

from arduinoeigen.

albertbayazidi avatar albertbayazidi commented on June 2, 2024

I'll try this

from arduinoeigen.

albertbayazidi avatar albertbayazidi commented on June 2, 2024

Increasing the stack size of the main task led to crashes for smaller matrices. I also tried decreasing the stack size so there was more heap memory, but it began crashing because there was too little stack. My understanding is that there is enough heap memory for a 170x170 matrix but it crashes for some other reason.

from arduinoeigen.

albertbayazidi avatar albertbayazidi commented on June 2, 2024

int n = 169; //will crash for n = 170 on an esp32

Eigen::MatrixXf A(n,n);

void setup() {
// put your setup code here, to run once:
Serial.begin(115200);

}

void loop() {
size_t freeHeap = ESP.getFreeHeap();
Serial.printf("Free heap memory: %u bytes\n", freeHeap);
delay(1000);

}

from arduinoeigen.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.