Jiawei Liu

Results 19 issues of Jiawei Liu

The [installation](https://tvm.apache.org/docs/tutorial/install.html#sphx-glr-download-tutorial-install-py) page shows unexpected blank code block. ![image](https://user-images.githubusercontent.com/38074777/183534772-8c6d9683-dc73-47b3-bb14-29c098cf2189.png) cc: @driazati

type: bug

## Fix Conversion in Clip (opset < 11) Consider `clip(0, 1)` in ONNX opeset 10 (Clip-6): ## Symptom Result inconsistency! It won't report any error but silently return wrong results....

```python from pygments import highlight from pygments.lexers.python import Python3Lexer from pygments.formatters import Terminal256Formatter print(highlight("import os", Python3Lexer(), Terminal256Formatter(style="default")).encode()) print(highlight("import os", Python3Lexer(), Terminal256Formatter(style="default"))) ``` The generated color sequence did not display properly...

**Describe the bug** Maybe I am wrong, but it seems `List[List[T]]` is supported while `List[Tuple[T, ...]]` is not. **To Reproduce** ```python from dataclasses import dataclass from typing import List, Dict,...

bug

This thread discusses the design of Relax Pattern Language. ## 🎯 Progress and Questions *This section is pinged to show current progress. Please sklip this section if you are new...

```python from __future__ import annotations from tvm.script import relax as R, tir as T @R.function def bug(x: Tensor((32, 32), "float32")) -> Tensor: with R.dataflow(): lv0 = R.call_tir(my_relu, (x,), (32, 32),...

bug

Thanks for the great work! When going through the tutorial I can successfully run vicuna on single A6000: ![image](https://user-images.githubusercontent.com/38074777/231925900-65bcfd56-497c-4089-b97c-87a533177777.png) However, when trying to accelerate things with 2 gpus I found...

Hi thanks for the great work! I am curious given two experiments (two different `experiment-data` folders), how to merge the two experiments in order to synthesize HTML reports for the...

Like what I said in the title. Many thanks for your great effort!

I am developing a new [pass](https://github.com/ganler/mini-kint) using LLVM-13 from Homebrew and I got a strange bug that whenever I call `Constant::signExtend` the pass crashes with `opt` invoked. However, when I...