Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ jobs:
shell: bash
env:
PYTHONPATH: ${{ github.workspace }}
PTO2_RING_DEP_POOL: 524288
PTO2_RING_TASK_WINDOW: 524288
PTO2_RING_HEAP: 1073741824
PTO2_RING_DEP_POOL: 1048576
PTO2_RING_TASK_WINDOW: 1048576
PTO2_RING_HEAP: 4294967296
run: |
set +e
if [ "${{ github.event_name }}" = "pull_request" ]; then
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ jobs:
shell: bash
env:
PYTHONPATH: ${{ github.workspace }}
PTO2_RING_DEP_POOL: 524288
PTO2_RING_TASK_WINDOW: 524288
PTO2_RING_HEAP: 1073741824
PTO2_RING_DEP_POOL: 1048576
PTO2_RING_TASK_WINDOW: 1048576
PTO2_RING_HEAP: 4294967296
PYPTO_LOG_LEVEL: error
PYPTO_WARNING_LEVEL: none
run: |
Expand Down
2 changes: 1 addition & 1 deletion models/deepseek/v4/decode_csa.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) PyPTO Contributors.
# This program is free software, you can redistribute it and/or modify it under the terms and conditions of
# CANN Open Software License Agreement Version 2.0 (the "License").
Expand Down Expand Up @@ -399,7 +399,7 @@

parser = argparse.ArgumentParser()
parser.add_argument("-p", "--platform", type=str, default="a2a3",
choices=["a2a3", "a2a3sim", "a5", "a5sim"])
choices=["a2a3", "a5"])
parser.add_argument("-d", "--device", type=int, default=0)
parser.add_argument("--layer-id", type=int, default=0)
parser.add_argument("--seed", type=int, default=0)
Expand Down
2 changes: 1 addition & 1 deletion models/deepseek/v4/decode_hca.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) PyPTO Contributors.
# This program is free software, you can redistribute it and/or modify it under the terms and conditions of
# CANN Open Software License Agreement Version 2.0 (the "License").
Expand Down Expand Up @@ -347,7 +347,7 @@

parser = argparse.ArgumentParser()
parser.add_argument("-p", "--platform", type=str, default="a2a3",
choices=["a2a3", "a2a3sim", "a5", "a5sim"])
choices=["a2a3", "a5"])
parser.add_argument("-d", "--device", type=int, default=0)
parser.add_argument("--layer-id", type=int, default=0)
parser.add_argument("--seed", type=int, default=0)
Expand Down
Loading
Loading