Phil Tomson

Results 28 issues of Phil Tomson

> $ make BOARD=blackice-ii > riscv64-unknown-elf-gcc -march=rv32i -mabi=ilp32 -Wall -Wextra -pedantic -DFREQ=48000000 -Os -ffreestanding -nostartfiles -g -Iprograms/hello -c -o programs/hello/main.o programs/hello/main.c > cp start-ram.s start.s > riscv64-unknown-elf-as -march=rv32i -mabi=ilp32 -o...

Need a layer for doing deconvolution.

enhancement

I installed Aurochs on a new system and then went to build the astsaver example: $ cd examples/astsaver $ make Finished, 1 target (0 cached) in 00:00:00. - /home/phil/godi-3.12.1.0/bin/ocamlc.opt -c...

In C and C++ there is a concept of _bit fields_ (http://en.cppreference.com/w/cpp/language/bit_field). They allow you to define a very efficient bit packing in a struct. For example: ``` struct Foo...

speculative

was just watching the C++ Now presentation on Julia and C++ (https://www.youtube.com/watch?v=hvnxY3NjHQ4) and noticed in the section on Cxx.jl (around 48 minutes in) that there is a special assignment syntax...

I've got some C++17 code that I have to compile with clang++-5.0 or g++-7 as opposed to the system C++ compiler (which defaults to clang++-4.0). Is there any way to...

In issues 33 (https://github.com/carpedm20/ENAS-pytorch/issues/33) I wondered why the Embedding encoder was as large as it was. The response from @carpedm20 was: > You can assume the same activation in a...

I tried running: `python main.py --network_type rnn --dataset ptb --controller_optim adam --controller_lr 0.00035 --shared_optim sgd --shared_lr 20.0 --entropy_coeff 0.0001` But got: ``` 2018-09-20 11:34:56,560:INFO::[*] Make directories : logs/ptb_2018-09-20_11-34-56 2018-09-20 11:35:01,015:INFO::regularizing:...

I notice that in Trainer.train() self.save_model() is called at certain times to save all of the shared weights in the "super graph" (my terminology), but I don't see that the...

I'm wondering if there is currently a way to wrap a templated struct like this where the template params are not types: ``` template< uint8_t WWIDTH, uint8_t FRACWIDTH> struct FixedPt...