Skip to content

Commit 8d3939c

Browse files
authored
Fix typo excuter -> executor (#96)
* fix folder name typos * all "excuter" turned into "executer" * doc to docs * remove util files * docker modified for testing * fix .github/workflows
1 parent a8eedd1 commit 8d3939c

File tree

222 files changed

+88
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+88
-87
lines changed

.cursorrules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Always respond in 中文
66
项目分为3部分
77
1. 前端。python库的接口风格参考pytorch,其他语言如go,java,c,rust等,后续设计完善。
88
2. 调度器,待设计
9-
3. 执行器,使用c++,cuda,metal,omp simd等,实现不同excuter的算子的前向和反向
9+
3. 执行器,使用c++,cuda,metal,omp simd等,实现不同executor的算子的前向和反向
1010

1111
关于概念
1212
deepx.Tensor仅仅就是一个tensor,不像pytorch的tensor,一个tensor其实包含了自身和梯度2个tensor的数据
Lines changed: 2 additions & 2 deletions
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Excuter/cppcommon Build
22
on:
33
push:
44
paths:
5-
- 'excuter/cpp-common/**'
5+
- 'executor/cpp-common/**'
66
pull_request:
77
paths:
8-
- 'excuter/cpp-common/**'
8+
- 'executor/cpp-common/**'
99
env:
1010
HIGHWAY_VERSION: 1.2.0
1111

@@ -48,7 +48,7 @@ jobs:
4848
uses: actions/cache@v3
4949
with:
5050
path: |
51-
excuter/cpp-common/build
51+
executor/cpp-common/build
5252
~/.ccache
5353
key: ${{ runner.os }}-build-${{ hashFiles('**/CMakeLists.txt') }}
5454
restore-keys: |
@@ -57,7 +57,7 @@ jobs:
5757
# 构建 cpp-common 库
5858
- name: Build Common Library
5959
run: |
60-
cd excuter/cpp-common
60+
cd executor/cpp-common
6161
mkdir -p build && cd build
6262
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ..
6363
cmake --build . --config Release -j$(nproc)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Excuter/cuda-linux Build
22
on:
33
push:
44
paths:
5-
- 'excuter/op-mem-cuda/**'
5+
- 'executor/op-mem-cuda/**'
66
pull_request:
77
paths:
8-
- 'excuter/op-mem-cuda/**'
8+
- 'executor/op-mem-cuda/**'
99
env:
1010
CUDA_VERSION: "12.6.0"
1111
CUDA_MAJOR_VERSION: "12"
@@ -62,7 +62,7 @@ jobs:
6262
cd /workspace && \
6363
6464
# 构建 common 库
65-
cd excuter/cpp-common && \
65+
cd executor/cpp-common && \
6666
mkdir -p build && cd build && \
6767
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -GNinja .. && \
6868
ninja && \

.github/workflows/excuter-ompsimd-linux.yml renamed to .github/workflows/executor-ompsimd-linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Excuter/ompsimd-linux Build
22
on:
33
push:
44
paths:
5-
- 'excuter/op-mem-ompsimd/**'
5+
- 'executor/op-mem-ompsimd/**'
66
pull_request:
77
paths:
8-
- 'excuter/op-mem-ompsimd/**'
8+
- 'executor/op-mem-ompsimd/**'
99
env:
1010
HIGHWAY_VERSION: 1.2.0
1111

@@ -48,8 +48,8 @@ jobs:
4848
uses: actions/cache@v3
4949
with:
5050
path: |
51-
excuter/op-mem-ompsimd/build
52-
excuter/cpp-common/build
51+
executor/op-mem-ompsimd/build
52+
executor/cpp-common/build
5353
~/.ccache
5454
key: ${{ runner.os }}-build-${{ hashFiles('**/CMakeLists.txt') }}
5555
restore-keys: |
@@ -84,15 +84,15 @@ jobs:
8484
# 构建 cpp-common 库
8585
- name: Build Common Library
8686
run: |
87-
cd excuter/cpp-common
87+
cd executor/cpp-common
8888
mkdir -p build && cd build
8989
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ..
9090
cmake --build . --config Release -j$(nproc)
9191
9292
# 构建执行器
9393
- name: CMake Build
9494
run: |
95-
cd excuter/op-mem-ompsimd
95+
cd executor/op-mem-ompsimd
9696
mkdir -p build && cd build
9797
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ..
9898
cmake --build . --config Release -j$(nproc)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 5 additions & 5 deletions

cutlass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit bbe579a9e3beb6ea6626d9227ec32d0dae119a49

doc/excuter/deepx.op.drawio.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

doc/front/deepx.op.drawio.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)