Qingchao Shen

Results 11 comments of Qingchao Shen
trafficstars

I came cross the same crash. is there any workaround to solve the bug?

I came across the same issue when using `InstanceNorm2d`.

This is a bug about the LSTM layer. I'm not very familiar with the RNN network. For the LSTM model, why does `batch_size !=1` lead to a crash in TVM?...

@echuraev Thanks for your explanation, I'm leaning to fix this bug.

> @jikechao I quickly took a look at this issue, and it looks like that one of the possible solution might be in using `reshape` instead of `squeeze` implementation in...

The `hardsigmoid`, `functional.normalize`, and `Linear` operators have the same crash.

@Lunderberg @Hzfengsy Thanks you for your advice and patch. However, I'm sorry to tell you that this crash still exists after using the patch mentioned in this PR. The build...

@Hzfengsy I have updated `llvm-gcc-12.0` which is the latest version that is supported by Ubuntu16.04. But this bug exists. As a workaround, I modify the source code by replacing `Array{ptr->source,...

@Lunderberg Thanks for your efforts. Indeed, only one instance of this issue. After changing Array{...} to Array{...}. and changing the source code you provided [above](https://github.com/apache/tvm/pull/14604#:~:text=//%20After%0Atemplate%20%3Ctypename%20IterType%2C%20typename%20%3D%20std%3A%3Aenable_if_t%3Cis_valid_iterator_v%3CT%2C%20IterType%3E%3E%3E%0AArray(IterType%20first%2C%20IterType%20last)%20%7B%0A%20%20Assign(first%2C%20last)%3B%0A%7D), build sucessfully.

@Lunderberg @tqchen @Hzfengsy @junrushao Hi all, I encountered a Segmentation Fault error while running inference on IRs containing an `IF-Else` structure. Since Segfaults are typically high-priority bugs, could you please...