Skip to content
Open
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ include(FetchContent)

FetchContent_Declare(
libpto_isa_headers
GIT_REPOSITORY https://gitcode.com/cann/pto-isa.git
GIT_REPOSITORY https://github.com/PTO-ISA/pto-isa.git
GIT_TAG 8.5.0)

FetchContent_Populate(libpto_isa_headers)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pto-isa kernels

Ascend NPU kernels using [pto-isa](https://gitcode.com/cann/pto-isa/). Parallel Tile Operation (PTO) is a virtual instruction set architecture designed by Ascend CANN, focusing on tile-level operations.
Ascend NPU kernels using [pto-isa](https://github.com/PTO-ISA/pto-isa/). Parallel Tile Operation (PTO) is a virtual instruction set architecture designed by Ascend CANN, focusing on tile-level operations.

## Build

Expand Down
2 changes: 1 addition & 1 deletion examples/jit_cpp/matmul_swizzle/matmul_original_pto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ full text of the License.
*/

// Modified from
// https://gitcode.com/cann/pto-isa/blob/master/demos/torch_jit/gemm/gemm_kernel.cpp
// https://github.com/PTO-ISA/pto-isa/blob/master/demos/torch_jit/gemm/gemm_kernel.cpp
// to make it work for the benchmark. Original license above.

#include <cstdint>
Expand Down
Loading