You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,when i use aimet to quantize my rnn model,some tracing error happens.
import torch
import torch.nn as nn
from aimet_torch.model_preparer import prepare_model
rnn=nn.RNN(10,20,1)
rnn=prepare_model(rnn)
torch.fx.proxy.TraceError:symbolically traced variables cannot be used as inputs to control flow
it seems that nn.RNN can not be traced by torch.fx
so i use torch.fx.symbolic_trace to directly trace the torch.nn.Rnn(10,20,1),but also failed
the wheel i installed is aimet_torch-torch_cpu_pt19_1.31.0-cp38-cp38-linux_x86_64.whl
The text was updated successfully, but these errors were encountered:
Hi,when i use aimet to quantize my rnn model,some tracing error happens.
it seems that nn.RNN can not be traced by torch.fx
so i use torch.fx.symbolic_trace to directly trace the torch.nn.Rnn(10,20,1),but also failed
the wheel i installed is aimet_torch-torch_cpu_pt19_1.31.0-cp38-cp38-linux_x86_64.whl
The text was updated successfully, but these errors were encountered: