Kayo Phoenix

Results 127 comments of Kayo Phoenix

Today we have many types of OpenCL architectures and platforms, so we must compile all programs for each platform. I made some estimation and concluded that total overhead is too...

It depend from that, what understand a clustering for us. May be we talk about different things… In my perception, each machine in cluster have its own CL hardware, in...

I also get same error: ``` kayo@ikki:~/shade/shade-haste$ haste-inst install Resolving dependencies... Configuring shade-haste-0.1.0.0... Building shade-haste-0.1.0.0... Preprocessing library shade-haste-0.1.0.0... src/Shade/Haste/Internal/React.hs:158:32: Could not deduce (Pack a) arising from a use of `ffi'...

I changed `fieldIn` function signature as GHC suggests: ``` fieldIn :: (Pack a, Unpack a, Pack b, Unpack b) => String -> a -> b ``` It works fine for...

Согласен, это серьёзная проблема... А как насчёт выпилить `ets_xxx` и перейти на `newlib` (libc libg libm что идут с toolchain-ом)?

То есть musl компактнее чем newlib? В моём опыте использования обеих получалось наоборот. Тут есть другая проблема: надо правильно растолкать функции по секциям и убрать те, что уже реализованы в...

Какой ваш модуль? Попробуйте это: UART 0 здесь https://github.com/pvvx/MinEspSDKLib/blob/master/include/sdk/sdk_config.h#L9 1 здесь https://github.com/pvvx/MinEspSDKLib/blob/master/app/user/user_main.c#L13 Работоспособность тестировал на ESP-01, ESP-12

Hi amirgon, Almost all **ESP SDK** implemented so, as use it as submodules is a non-trivial thing. But it is very convenient in practice. The common problem is tricky and...

Are you need a help with it?

I think I would like to have the method `replace_children()` as defined below: ```rust pub enum Placement { AtStart, AtEnd, AtIndex(usize), BeforeNode(Node), } // ... impl Stretch { // ......