Djordje Nedic

Results 69 comments of Djordje Nedic

There seems to be an issue with running models that do not entirely fit into VRAM, here is a backtrace of me trying to run dolphin-mixtral with an AMD 5700XT...

Hello @Sazzad07 , thank you for your submission. Can you use the `SERIAL_FLASHER_DEBUG_TRACE` option and provide the full log? That would give us more insight into what is actually happening.

I am closing this for inactivity.

Hello @higaski thanks for the contribution! I will investigate the issue you are having as soon as I can. Currently, our intent is to use the [Rust flasher stub](https://github.com/esp-rs/esp-flasher-stub) for...

I'm not sure we should do both compile and run-time stub toggling this way. In the case of run-time toggling, if the compiler has visibility into the fact that stubs...

Regarding the `SPI_ATTACH` logic for `ESP8266`, in `esptool`, `ESPLoader` is only a base class and the behavior for `ESP8266` is overriden by its concrete class [here](https://github.com/espressif/esptool/blob/master/esptool/targets/esp8266.py#L115). Edit: I realize this...

Stub support should be gated behind `#if (defined SERIAL_FLASHER_INTERFACE_UART) || (defined SERIAL_FLASHER_INTERFACE_USB)` for now, as the stub does not support uploading over SPI.

>> In the case of run-time toggling, if the compiler has visibility into the fact that stubs are not used at compile-time, it will still mark all unused symbols for...

> > > > In the case of run-time toggling, if the compiler has visibility into the fact that stubs are not used at compile-time, it will still mark all...

> I have another issue with the stub code. When I try to switch the transmission rate then detecting the flash size fails. I assume that is again because of...