2019
2019
> Actually it looks like a slight modification to src/generate-names.cc does the trick: > > ``` > bool NameGenerator::HasName(const std::string& str) { > return !str.empty() && str != "$"; >...
In addtion, it seems that there is a similar OOB read at [`BinaryReaderInterp::OnReturnCallExpr`](https://github.com/WebAssembly/wabt/blob/83a226bcd1816c86fb1fcb0963c6a11e2c373aaf/src/interp/binary-reader-interp.cc#L1113)
Hi, I would like to know approximately when the learning part will be available. Thanks very much~
> Hi, > > It's likely that your modem is not fully supported and hangs somewhere during bootup/initial emulation. To debug this issue, I would recommend to enable debug output...
The main problem is that breakpoint at `boot_key_check` is not handled. The breakpoint should be handled by callback function set by `avatar.watchmen.add("BreakpointHit", ...)`, but when FirmWire is executed, such callback...
> Hi, > > The protocols are _only_ shut down when going into fuzzing mode for Shannon. This is a conscious design decision for performance, the idea is that one...
> I don't think this solution will work if breakpoints are expected to work after AFL takes over. When AFL forks, by nature of the `fork` syscall, all threads except...
Indeed, if we have largest element at the beginning, any other elements will be removed. The approach to tackle such worst case condition is to randomly shuffle the array before...
transformer的FLOPs是线性的,这明显不对,应该是没有计算attention。。。 ```python In [87]: calculate_flops(model=model, input_shape=(1, 0x2000), transformer_tokenizer=tokenizer, print_results=False, output_as_string= ...: False) Out[87]: (1224802534686720, 612385396097024, 4097) In [88]: calculate_flops(model=model, input_shape=(1, 0x4000), transformer_tokenizer=tokenizer, print_results=False, output_as_string= ...: False) Out[88]: (2449605069373440, 1224770792194048, 4097)...