8000 build for 2.2.1 in CI · chengzeyi/stable-fast@9237048 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
build for 2.2.1 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chengzeyi committed Mar 7, 2024
1 parent e0728bc commit 9237048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- "3.11"
torch_version:
- "2.2.0"
- "2.2.1"
cuda_short_version:
- "118"
- "121"
Expand Down
4 changes: 2 additions & 2 deletions src/sfast/csrc/operators/cudnn/cudnn_convolution_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1185,12 +1185,12 @@ select_conv_backend(const Tensor &input_r, const Tensor &weight_r,
int64_t groups_) {
return torch::native::select_conv_backend(
input_r, weight_r, bias_opt,
#if TORCH_VERSION_MINOR >= 2
#if TORCH_VERSION_MAJOR == 2 && TORCH_VERSION_MINOR >= 2 || TORCH_VERSION_MAJOR > 2
fromIntArrayRefUnchecked
#endif
(stride_),
fromIntArrayRefUnchecked(padding_),
#if TORCH_VERSION_MINOR >= 2
#if TORCH_VERSION_MAJOR == 2 && TORCH_VERSION_MINOR >= 2 || TORCH_VERSION_MAJOR > 2
fromIntArrayRefUnchecked
#endif
(dilation_),
Expand Down

0 comments on commit 9237048

Please sign in to comment.
0