Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
dcca9de
[Fix] Fusion mm + relu
wok1909 Dec 27, 2024
1847629
[Fix] specify variable name in c wrapper
wok1909 Jan 2, 2025
1d95e4a
[Temporal] block schedule node fusion
wok1909 Jan 2, 2025
87673ac
[CI] Build base image on base branch
YWHyuk Jan 2, 2025
fbe662f
[Backend] Support DMA's constant indexing
YWHyuk Jan 3, 2025
f583e22
[Backend] Allowing null tile operation graph
YWHyuk Jan 3, 2025
4c96fbb
[Frontend] Fix dma_start mlir code
YWHyuk Jan 3, 2025
f696399
[Backendsim] Fix null TOG stat
YWHyuk Jan 3, 2025
2bc18b3
[Frontend] Add missing c0 in the bmm template
YWHyuk Jan 3, 2025
ad87608
[Test] Fix test sparsity case
YWHyuk Jan 3, 2025
0cdbfba
[Backendsim] Fix null TOG stat
YWHyuk Jan 3, 2025
e55f70d
[CI] Fix checkout logic
YWHyuk Jan 3, 2025
37de49c
[CI] Seperate PR, docker test
YWHyuk Jan 3, 2025
cd724da
[CI] Docker test on master branch
YWHyuk Jan 3, 2025
0f95708
[CI] Update pull-request.yml
YWHyuk Jan 3, 2025
9f893e6
[CI] Fix tag name reference
YWHyuk Jan 6, 2025
7df1abe
[Frontend] GEMM combination mapping
YunseonShin Jan 3, 2025
ff66ded
[Frontend] CONV bias & test case
YunseonShin Jan 3, 2025
8f11838
[CI] Add exit when test failed to MoE, MLP
YWHyuk Jan 6, 2025
7c33c7e
[Fix] #91 MVOUT coarse-grained DMA
YunseonShin Jan 7, 2025
4086a47
[Fix] BMM coarse-grained MVOUT
YunseonShin Jan 8, 2025
add3e5c
Merge pull request #97 from PSAL-POSTECH/hotfix
YWHyuk Jan 8, 2025
d06d197
[Frontend] Make operator return type #96
YWHyuk Jan 9, 2025
f90d46d
[Frontend] Make custom pooling disabled
YWHyuk Jan 9, 2025
1719304
Merge pull request #98 from PSAL-POSTECH/type_infer
YWHyuk Jan 9, 2025
9893b09
[CI] Add build condition
YWHyuk Jan 9, 2025
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
17 changes: 3 additions & 14 deletions .github/workflows/docker-base-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Docker Base Image CI

on:
push:
branches: [ "master" ]
branches: [ "base" ]
repository_dispatch:
types: [ build_base ]

jobs:
build:
Expand All @@ -27,21 +29,8 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Step 3: Check if the Base Image Exists
- name: Check if Base Image Exists
id: check-image
run: |
if docker pull ghcr.io/psal-postech/torchsim_base:latest; then
echo "Base image already exists. Skipping build and push."
echo "exists=true" >> $GITHUB_ENV
else
echo "Base image does not exist. Proceeding with build and push."
echo "exists=false" >> $GITHUB_ENV
fi

# Step 4: Build and Push Docker Image
- name: Build and Push Docker Image
if: env.exists == 'false'
uses: docker/build-push-action@v4
with:
context: .
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: Docker Image CI

on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
branches: [ "master" ]

jobs:
build:
Expand Down
Loading
Loading