statelesshz
commited on
Commit
•
0ecad3a
1
Parent(s):
8fd7fba
Add support for Ascend NPU
Browse filesTransformers is already supported on Ascend NPU. This PR allows users to easily use ChatGLM2 on NPU :-)
- modeling_chatglm.py +1 -1
modeling_chatglm.py
CHANGED
@@ -29,7 +29,7 @@ from .configuration_chatglm import ChatGLMConfig
|
|
29 |
|
30 |
# flags required to enable jit fusion kernels
|
31 |
|
32 |
-
if sys.platform != 'darwin':
|
33 |
torch._C._jit_set_profiling_mode(False)
|
34 |
torch._C._jit_set_profiling_executor(False)
|
35 |
torch._C._jit_override_can_fuse_on_cpu(True)
|
|
|
29 |
|
30 |
# flags required to enable jit fusion kernels
|
31 |
|
32 |
+
if sys.platform != 'darwin' and torch.cuda.is_available():
|
33 |
torch._C._jit_set_profiling_mode(False)
|
34 |
torch._C._jit_set_profiling_executor(False)
|
35 |
torch._C._jit_override_can_fuse_on_cpu(True)
|