Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Restrict slash-command-dispatch to PR only #2472

Merged
merged 2 commits into from
Jun 28, 2021
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/workflows/issue_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
token: ${{ secrets.GARDENER_PAT }}
reaction-token: ${{ secrets.GARDENER_PAT }}
repository: taichi-dev/ci_workflows
issue-type: pull-request
permission: triage
commands: |
format
6 changes: 4 additions & 2 deletions taichi/program/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
#include <string>
#include "taichi/common/core.h"

TLANG_NAMESPACE_BEGIN
namespace taichi {
namespace lang {

enum class Arch : int {
#define PER_ARCH(x) x,
Expand All @@ -28,4 +29,5 @@ bool arch_use_host_memory(Arch arch);

int default_simd_width(Arch arch);

TLANG_NAMESPACE_END
} // namespace lang
} // namespace taichi