Matt Parrett

Results 21 comments of Matt Parrett

This is a mac-specific optimization that would be interesting to see: https://github.com/apple/ml-ane-transformers

Thanks for the quick and helpful response. I'll have some time this weekend to hopefully make progress. > Do binaries in the "release" section work on your breadboard? I can...

Update: Investigating a possible root cause with the arm toolchain, i.e.`gcc-arm-embedded` vs `gcc-arm-none-eabi` (had issues with the latter on macos initially and followed [some instructions](https://stackoverflow.com/questions/73797757/trouble-with-arm-none-eabi-gcc-during-compilation-on-mac-os-m1) to use the -embedded package....

Progress - solid LEDs after flashing with my own build! Uninstalled all *eabi* packages in homebrew, and reinstalled arm toolchain with `brew install --cask gcc-arm-embedded`

I appear to have a viable debug setup using a pi zero! For a "hello world" program I'm able to connect to gdb and also read stdio using minicom. Next...

Happy to report I've got a foothold on debugging. Thanks for the help! Relevant snippets below: Relevant snippets: **build.sh** ``` cmake -DCMAKE_BUILD_TYPE=Debug ``` **CMakeLists.txt** ``` # debug setup: enable stdio...

Hi there. I was playing with this a bit too and had similar issues. This allowed me to work around the espeak issue and run on mps/m1: ``` PHONEMIZER_ESPEAK_LIBRARY=/opt/homebrew/Cellar/espeak/1.48.04_1/lib/libespeak.dylib python3...

@fakerybakery Did you set `device = 'mps'` with no errors? Otherwise, the example notebook will probably run as-is because it selects cpu if cuda is not available. For me, after...

> @mparrett Could you clarify the changes you made, or share your code regarding the `mps` device. (If I'm understanding you, you've successfully run using `mps`. Correct?) > > >...

Apologies for the delay, have been out of town. Getting back tomorrow and will share my branch. Thanks!On Aug 4, 2024, at 07:58, changeling ***@***.***> wrote: @mparrett Just checking in...