ChenWang
ChenWang
``` if pad_size: if len(token) < pad_size: token.extend([PAD] * (pad_size - len(token))) else: token = token[:pad_size] seq_len = pad_size ``` 如果文本长度超过pad_szie,这里token=token[:pad_size],那pan_size之后的文本是不是没用上,对这里不是很懂
The issue is in this line https://github.com/adam-maj/tiny-gpu/blob/9a07e2b97f322439cf4cbaf1d53f4dc4b31c2a2a/Makefile#L8 cocotb version: 1.8.1 The lib name is `cocotbvpi_icarus` on Windows instead of `libcocotbvpi_icarus`.
Before CMake 3.19 almost only INTERFACE_ prefixed properties were allowed. So in the ext `CMakeLists.txt` file, set target properties will be failed if the CMake version is old.