Skip to content

Commit

Permalink
ADD rename artifact phrase
Browse files Browse the repository at this point in the history
  • Loading branch information
karminski committed Oct 5, 2024
1 parent ab1cdca commit b5d99e6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
command: build
args: --release --target ${{ matrix.target }}

- name: Rename artifact
run: |
mv target/${{ matrix.target }}/release/core-to-core-latency-plus target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Karminski <[email protected]>"]
repository = "https://github.com/KCORES/core-to-core-latency-plus"
license = "MIT"
readme = "README-en-us.md"
version = "0.1.15"
version = "0.1.16"
edition = "2021"
exclude = ["/results"]

Expand Down
2 changes: 2 additions & 0 deletions README-en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Note that the --upload option will upload your benchmark results to [https://cor

You can view your results and generate a heatmap using the link generated after the upload is complete.

Considering the substantial size of the historical benchmark dataset (creating a Jupyter Notebook from the "results" folder results in a file of approximately 170MB), we highly recommend uploading the data to the platform for immediate heatmap visualization. For offline access to historical data, please consult [History Results](./results/results.ipynb).

#### install with cargo and run

```
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ core-to-core-latency-plus.exe -b 1 --upload

注意, --upload 选项会上传您的 benchmark 结果到 [https://core-to-core-latency.kcores.com](https://core-to-core-latency.kcores.com).

您可以根据上传完毕后生成的链接来查看您的结果并生成 heapmap.
您可以根据上传完毕后生成的链接来查看您的结果并生成 heapmap.

由于 history benchmark 结果过大 (results 文件夹内的内容生成 jupyter notebook 会达到 170MB), 因此强烈建议上传 benchmark 结果到该网站并实时生成 heapmap. 如果您需要手动查看历史结果可以访问 [History Results](./results/results.ipynb).


#### 使用 cargo 安装并运行
Expand Down

0 comments on commit b5d99e6

Please sign in to comment.