Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KUNLUNXIN] add FlagGems blas op support & minor fix for env vars #727

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions operation/benchmarks/addmm/kunlunxin/R300p/case_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
M : 16
N : 40
K : 256
ITERS: 50
SPECTFLOPS: 9999
5 changes: 5 additions & 0 deletions operation/benchmarks/addmm/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda

echo "KUNLUNXIN ENV.SH end"
5 changes: 5 additions & 0 deletions operation/benchmarks/bmm/kunlunxin/R300p/case_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
M : 16
N : 40
K : 256
ITERS: 50
SPECTFLOPS: 9999
5 changes: 5 additions & 0 deletions operation/benchmarks/bmm/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda

echo "KUNLUNXIN ENV.SH end"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda
export XPU_enable_reorder=1
export TRITONXPU_BUFFER_SIZE=128

echo "KUNLUNXIN ENV.SH end"
5 changes: 5 additions & 0 deletions operation/benchmarks/linear/kunlunxin/R300p/case_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
M : 16
N : 40
K : 256
ITERS: 50
SPECTFLOPS: 9999
5 changes: 5 additions & 0 deletions operation/benchmarks/linear/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda

echo "KUNLUNXIN ENV.SH end"
2 changes: 1 addition & 1 deletion operation/benchmarks/max/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda
export Triton_big_instcombine=1000
export INST_COMBINE_LOOP_THRESHOLD=1000

echo "KUNLUNXIN ENV.SH end"
2 changes: 1 addition & 1 deletion operation/benchmarks/min/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda
export Triton_big_instcombine=1000
export INST_COMBINE_LOOP_THRESHOLD=1000

echo "KUNLUNXIN ENV.SH end"
5 changes: 5 additions & 0 deletions operation/benchmarks/mm/kunlunxin/R300p/case_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
M : 16
N : 40
K : 256
ITERS: 50
SPECTFLOPS: 9999
5 changes: 5 additions & 0 deletions operation/benchmarks/mm/kunlunxin/R300p/env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
echo "KUNLUNXIN ENV.SH start"

source /root/miniconda/etc/profile.d/conda.sh && conda activate python38_torch201_cuda

echo "KUNLUNXIN ENV.SH end"
Loading