Skip to content

Commit

Permalink
Merge branch 'loadams/fix-no-torch-failure-mlu' into loadams/fix-trig…
Browse files Browse the repository at this point in the history
…gers-no-torch-workflow
  • Loading branch information
loadams committed Sep 27, 2024
2 parents f57b2ae + 54ce016 commit a257e50
Showing 1 changed file with 5 additions and 1 deletion.
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 a257e50

Please sign in to comment.