Qingnan Duan
Qingnan Duan
1. Add `--add-dll-search-path` to all subparsers. 2. Game version auto-detection often fails on Windows when the game is installed from MS Store, due to the special file permissions. Users normally...
This issue tracks the implementation of Activity component of the new gamestate. Design document: https://pad.stusta.de/p/openage-activity-system
libopenage/audio/dynamic_resource.h This class defines a hashmap and a queue to maintain the audio chunks. ``` datastructure::ConcurrentQueue decay_queue; std::unordered_map chunks; ``` Both of them keep a pointer to the actual chunk....
 Visual Studio 2019 complains when compiling with C++ 17 (node_iterator.h)
Hi, I am trying to verify the experiment results presented in the original paper. I made some changes to the code in order to perform the ablation test. My code...
/usr/local/src takes up several GBs in the resulting docker image. Deleting the source code can greatly reduce the size of the docker image. If you are concerned about open source...
### Description Introduce a contrib operator for Deformable Multi-Scale Attention ### Motivation and Context Deformable Multi-Scale Attention is first proposed in [Deformable DETR](https://arxiv.org/pdf/2010.04159.pdf). Implementing it with official ONNX operators results...
### Description Implement [FlashAttention](https://arxiv.org/pdf/2205.14135) and [FlashAttention-2](https://arxiv.org/pdf/2307.08691) for MultiHeadAttention on CPU. ### Motivation and Context Accelerate the execution of MultiHeadAttention. Current performance: 10ms vs 16ms (com.microsoft.MultiHeadAttention) on my Linux machine and...