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
1 change: 1 addition & 0 deletions .github/scripts/pr_comment_kernel_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,7 @@ def main():
"ref": default_branch,
"inputs": {
"kernel_name": kernel_name,
"dispatch_key": dispatch_key,
},
}
try:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-release-mac.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Build Release (macOS)
run-name: >-
Build Release (macOS) / ${{ inputs.kernel_name || '' }} / request=${{ inputs.dispatch_key || '' }}
on:
pull_request:
types: [closed]
Expand All @@ -8,6 +10,10 @@ on:
description: "Kernel directory name to build"
required: true
type: string
dispatch_key:
description: "Unique key for matching this run back to a bot dispatch"
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-release-windows.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Build Release (Windows)
run-name: >-
Build Release (Windows) / ${{ inputs.kernel_name || '' }} / request=${{ inputs.dispatch_key || '' }}
on:
pull_request:
types: [closed]
Expand All @@ -10,6 +12,10 @@ on:
description: "Kernel directory name to build"
required: true
type: string
dispatch_key:
description: "Unique key for matching this run back to a bot dispatch"
required: false
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Build Release
run-name: >-
Build Release / ${{ inputs.kernel_name || '' }} / request=${{ inputs.dispatch_key || '' }}
on:
pull_request:
types: [closed]
Expand All @@ -8,6 +10,10 @@ on:
description: "Kernel directory name to build"
required: true
type: string
dispatch_key:
description: "Unique key for matching this run back to a bot dispatch"
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down
5 changes: 2 additions & 3 deletions activation/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion activation/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Flake for activation kernels";

inputs = {
kernel-builder.url = "github:huggingface/kernels/kernels-use-kernels-data";
kernel-builder.url = "github:huggingface/kernels";
};

outputs =
Expand Down
5 changes: 2 additions & 3 deletions relu/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion relu/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Flake for ReLU kernel";

inputs = {
kernel-builder.url = "github:huggingface/kernels/kernels-use-kernels-data";
kernel-builder.url = "github:huggingface/kernels";
};

outputs =
Expand Down
Loading