Skip to content

Commit

Permalink
Merge branch 'master' into rearrange_ops
Browse files Browse the repository at this point in the history
  • Loading branch information
loadams authored Sep 27, 2024
2 parents dc6e04e + 8cded57 commit dc13454
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/no-torch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
pull_request:
paths:
- '.github/workflows/no-torch.yml'
- 'op_builder/**'
schedule:
- cron: "0 0 * * *"

Expand Down
6 changes: 5 additions & 1 deletion op_builder/mlu/fused_adam.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
# DeepSpeed Team

from .builder import MLUOpBuilder
import torch

try:
import torch
except ImportError as e:
pass


class MLUFusedAdam:
Expand Down

0 comments on commit dc13454

Please sign in to comment.