Neutron3529
Neutron3529
minimal test script: ```py input=16 output=8 seq_len=150 # compiling time is O(seq_len) batch_size=100 import oneflow as flow from oneflow import nn class Model(nn.Module): def __init__(self): super().__init__() self.lstm1=nn.LSTM(input,output,bias=False) def initial(self,batch_size=1): return...
@strint It seems that, it is time consuming compiling a rnn with long sequence length. Is there any plan to fix such disappoint behavior?
this might be feature since Bge_Un_S and Bge_Un do the same thing.
I'm creating a package, which could be directly build with `R CMD check`. Several changes: 1. Change lib type from ["staticlib"] to ["cdylib"], which will let cargo generate a `.so/.dll`...
It seems build.rs is the default script. It should be executed even without your configure. Maybe you put build.rs in a wrong place.
Use `fc-list | grep -i mono` could give you informations about the correct font name to use. For me, install `wqy font family` by `pacman -S wqy-microhei` and then use...
seems the same issue occurs. Maybe some packages are missing. Actually I have installed KDE without sddm. Maybe some dependencies are missing, adding them as dependencies might be helpful, but...
IMHO, 1/64 seems not the good choice, since 64 is not a multiple of 3 and 5. In case you really like 1/64 scale, maybe 1/60 is better. And rounding...
Can you compile other rust program? It might be the toolchain that does not support windows. Maybe rustc in v1.66 helps
> this crate uses enum, but enums cannot handle very well with newly added things. The most significant thing is that, there is no fall-back for localizing a newly added...