Skip to content

Commit 6e84bf6

Browse files
authored
fix set_device twice bug (#818)
1 parent b77a49f commit 6e84bf6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

mindocr/models/backbones/yolov8_backbone.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import os
2+
13
import numpy as np
24

35
import mindspore as ms
@@ -119,7 +121,7 @@ def yolov8_backbone(
119121

120122
def test_yolo_backbone():
121123
ms.set_context(mode=ms.PYNATIVE_MODE)
122-
ms.set_device("Ascend", 3)
124+
ms.set_device("Ascend", os.environ.get("DEVICE_ID", 0))
123125
ms.set_seed(0)
124126

125127
network = YOLOv8Backbone()

mindocr/models/heads/yolov8_head.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import math
2+
import os
23

34
import numpy as np
45

@@ -125,7 +126,7 @@ def yolov8_head(nc=5, reg_max=16, stride=None, in_channels=None) -> YOLOv8Head:
125126

126127
def test_yolov8_head():
127128
ms.set_context(mode=ms.PYNATIVE_MODE)
128-
ms.set_device("Ascend", 3)
129+
ms.set_device("Ascend", os.environ.get("DEVICE_ID", 0))
129130
ms.set_seed(0)
130131

131132
network = yolov8_head()

0 commit comments

Comments
 (0)