Hiroki Chen
Hiroki Chen
> Following up with this @Aurel300, I don't want to bother, but maybe this last error is something simple for you to see. Thanks again. @pinzaghi Prusti cannot fully support...
Also found it necessary to upgrade to a newer version of toolchain because we are using cargo extensions which were built with a newer nightly Rust toolchain but the current...
> @hiroki-chen Thank you for using teaclave-sgx-sdk. I plan to upgrade the Rust toolchain this month. Glad to hear this! Thank you for your efforts.
You can change the following ```python packed = torch.nn.utils.rnn.pack_padded_sequence(embed_inps, input_lens, batch_first=True, enforce_sorted=False) ``` in file `layer.py` line 56 to ```python packed = torch.nn.utils.rnn.pack_padded_sequence(embed_inps, input_lens.cpu(), batch_first=True, enforce_sorted=False) ``` I think this...
P.S. 教材挺烂的,建议自备一本别的
```c++ std::cout
I encountered this issue too when I was trying to zeroize the stack and general purpose registers of a sensitive function, and my thought was to keep the code of...
@haerdib Hi there, I have forked teaclave-rust-sgx-sdk v2.0.0 and tried to update it to `nightly-2022-08-30`. Some updates may be hacky so I am not sure whether this works for you,...
@volcano0dr Thank you for the update!
Hi @henrysun007, I noticed that the port for attestation is hardcoded as 443 in `attestation/src/service.rs`: ```rust let addrs = url.socket_addrs(|| match url.scheme() { "https" => Some(443), // Fixed port. _...