Skip to content

Commit 06a84c8

Browse files
jchen351fs-eire
andauthored
Enable DML on Windows and CUDA on Linux for Node.js binding (#19274)
This pull request includes modifications to the `c-api-cpu.yml` Azure Pipelines configuration file. The changes mainly revolve around the Node.js packaging stage and the handling of Node.js artifacts. The most significant changes include renaming the Node.js packaging stage, adding a new dependency to the stage, changing artifact names, adding a new script to list Node.js artifacts, and updating the source folder for copying NuGet binaries. Changes in Node.js packaging: * [`tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml`](diffhunk://#diff-00815920cc190d10fdebceac0c3a4b8a59e408684ae38177dfe7f96cae276c59L503-R508): Renamed the Node.js packaging stage from `Nodejs_Packaging_CPU` to `Nodejs_Packaging` and added `Windows_CI_GPU_DML_Dev` as a new dependency to the stage. Changes in handling of Node.js artifacts: * [`tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml`](diffhunk://#diff-00815920cc190d10fdebceac0c3a4b8a59e408684ae38177dfe7f96cae276c59L568-R569): Changed the artifact name from `drop-onnxruntime-nodejs-win-x64` to `drop-onnxruntime-nodejs-win-x64-dml` in the task to download pipeline artifacts for Windows x64. * [`tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml`](diffhunk://#diff-00815920cc190d10fdebceac0c3a4b8a59e408684ae38177dfe7f96cae276c59R595-R598): Added a new script to list Node.js artifacts from the directory `$(Build.BinariesDirectory)/nodejs-artifacts/win32/x64/`. * [`tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml`](diffhunk://#diff-00815920cc190d10fdebceac0c3a4b8a59e408684ae38177dfe7f96cae276c59L635-R640): Updated the source folder from `$(Build.BinariesDirectory)\RelWithDebInfo\RelWithDebInfo\nuget-artifacts\onnxruntime-win-x64\lib` to `$(Build.BinariesDirectory)\nodejs-artifacts\win32\x64` in the task to copy NuGet binaries to the directory `$(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64`. --------- Co-authored-by: Yulong Wang <[email protected]>
1 parent d2d9b5b commit 06a84c8

File tree

4 files changed

+23
-41
lines changed

4 files changed

+23
-41
lines changed

tools/ci_build/github/azure-pipelines/nodejs/templates/test_linux.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
stages:
55
- stage: Nodejs_Test_${{ parameters.StageSuffix }}
66
dependsOn:
7-
- Nodejs_Packaging_CPU
7+
- Nodejs_Packaging
88
condition: succeeded()
99
jobs:
1010
- job:
@@ -18,4 +18,3 @@ stages:
1818
value: '$(Build.BinariesDirectory)'
1919
steps:
2020
- template: test.yml
21-

tools/ci_build/github/azure-pipelines/nodejs/templates/test_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ parameters:
33
stages:
44
- stage: Nodejs_Test_MacOS_${{ parameters.StageSuffix }}
55
dependsOn:
6-
- Nodejs_Packaging_CPU
6+
- Nodejs_Packaging
77
condition: succeeded()
88
jobs:
99
- job:

tools/ci_build/github/azure-pipelines/nodejs/templates/test_win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
stages:
55
- stage: Nodejs_Test_${{ parameters.StageSuffix }}
66
dependsOn:
7-
- Nodejs_Packaging_CPU
7+
- Nodejs_Packaging
88
condition: succeeded()
99
jobs:
1010
- job:

tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml

+20-37
Original file line numberDiff line numberDiff line change
@@ -501,12 +501,13 @@ stages:
501501
displayName: 'Clean Agent Directories'
502502
condition: always()
503503

504-
- stage: Nodejs_Packaging_CPU
504+
- stage: Nodejs_Packaging
505505
dependsOn:
506+
- Windows_CI_GPU_DML_Dev
507+
- Windows_CI_GPU_DML_Dev_arm64
506508
- Linux_C_API_Packaging_CPU
509+
- Linux_C_API_Packaging_GPU_TensorRT_x64
507510
- MacOS_C_API_Package_Publish
508-
- Windows_Packaging_CPU_x64_${{ parameters.BuildVariant }}
509-
- Windows_Packaging_CPU_arm64_${{ parameters.BuildVariant }}
510511
condition: succeeded()
511512
jobs:
512513
- job:
@@ -533,18 +534,6 @@ stages:
533534
workingDirectory: '$(Build.SourcesDirectory)'
534535
displayName: 'Testing: force EOL to lf on windows for /js/**'
535536
536-
- task: DownloadPipelineArtifact@0
537-
displayName: 'Download Pipeline Artifact - NuGet (Win x64)'
538-
inputs:
539-
artifactName: 'onnxruntime-win-x64'
540-
targetPath: '$(Build.BinariesDirectory)/nuget-artifact'
541-
542-
- task: DownloadPipelineArtifact@0
543-
displayName: 'Download Pipeline Artifact - NuGet (Win ARM64)'
544-
inputs:
545-
artifactName: 'onnxruntime-win-arm64'
546-
targetPath: '$(Build.BinariesDirectory)/nuget-artifact'
547-
548537
- task: DownloadPipelineArtifact@0
549538
displayName: 'Download Pipeline Artifact - NuGet (OSX)'
550539
inputs:
@@ -554,7 +543,7 @@ stages:
554543
- task: DownloadPipelineArtifact@0
555544
displayName: 'Download Pipeline Artifact - NuGet (Linux x64)'
556545
inputs:
557-
artifactName: 'onnxruntime-linux-x64'
546+
artifactName: 'onnxruntime-linux-x64-tensorrt'
558547
targetPath: '$(Build.BinariesDirectory)/nuget-artifact'
559548

560549
- task: DownloadPipelineArtifact@0
@@ -566,13 +555,13 @@ stages:
566555
- task: DownloadPipelineArtifact@0
567556
displayName: 'Download Pipeline Artifact - Nodejs (Win x64)'
568557
inputs:
569-
artifactName: 'drop-onnxruntime-nodejs-win-x64'
558+
artifactName: 'drop-onnxruntime-nodejs-win-x64-dml'
570559
targetPath: '$(Build.BinariesDirectory)/nodejs-artifacts/win32/x64/'
571560

572561
- task: DownloadPipelineArtifact@0
573562
displayName: 'Download Pipeline Artifact - Nodejs (Win ARM64)'
574563
inputs:
575-
artifactName: 'drop-onnxruntime-nodejs-win-arm64'
564+
artifactName: 'drop-onnxruntime-nodejs-win-arm64-dml'
576565
targetPath: '$(Build.BinariesDirectory)/nodejs-artifacts/win32/arm64/'
577566

578567
- task: DownloadPipelineArtifact@0
@@ -590,7 +579,7 @@ stages:
590579
- task: DownloadPipelineArtifact@0
591580
displayName: 'Download Pipeline Artifact - Nodejs (Linux x64)'
592581
inputs:
593-
artifactName: 'drop-onnxruntime-nodejs-linux-x64'
582+
artifactName: 'drop-onnxruntime-nodejs-linux-x64-tensorrt'
594583
targetPath: '$(Build.BinariesDirectory)/nodejs-artifacts/linux/x64/'
595584

596585
- task: DownloadPipelineArtifact@0
@@ -631,38 +620,32 @@ stages:
631620
632621
# Node.js binding win32/x64
633622
- task: CopyFiles@2
634-
displayName: 'Copy nuget binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64\'
635-
inputs:
636-
SourceFolder: '$(Build.BinariesDirectory)\RelWithDebInfo\RelWithDebInfo\nuget-artifacts\onnxruntime-win-x64\lib'
637-
Contents: '*.dll'
638-
TargetFolder: '$(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64'
639-
- task: CopyFiles@2
640-
displayName: 'Copy nodejs binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64\'
623+
displayName: 'Copy binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64\'
641624
inputs:
642625
SourceFolder: '$(Build.BinariesDirectory)\nodejs-artifacts\win32\x64'
643-
Contents: '*.node'
626+
Contents: |
627+
*.dll
628+
*.node
644629
TargetFolder: '$(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\x64'
645630

646631
# Node.js binding win32/arm64
647632
- task: CopyFiles@2
648-
displayName: 'Copy nuget binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\arm64\'
649-
inputs:
650-
SourceFolder: '$(Build.BinariesDirectory)\RelWithDebInfo\RelWithDebInfo\nuget-artifacts\onnxruntime-win-arm64\lib'
651-
Contents: '*.dll'
652-
TargetFolder: '$(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\arm64'
653-
- task: CopyFiles@2
654-
displayName: 'Copy nodejs binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\arm64\'
633+
displayName: 'Copy binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\arm64\'
655634
inputs:
656635
SourceFolder: '$(Build.BinariesDirectory)\nodejs-artifacts\win32\arm64'
657-
Contents: '*.node'
636+
Contents: |
637+
*.dll
638+
*.node
658639
TargetFolder: '$(Build.SourcesDirectory)\js\node\bin\napi-v3\win32\arm64'
659640

660641
# Node.js binding linux/x64
661642
- task: CopyFiles@2
662643
displayName: 'Copy nuget binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\linux\x64\'
663644
inputs:
664-
SourceFolder: '$(Build.BinariesDirectory)\RelWithDebInfo\RelWithDebInfo\nuget-artifacts\onnxruntime-linux-x64\lib'
665-
Contents: 'libonnxruntime.so.*'
645+
SourceFolder: '$(Build.BinariesDirectory)\RelWithDebInfo\RelWithDebInfo\nuget-artifacts\onnxruntime-linux-x64-tensorrt\lib'
646+
Contents: |
647+
libonnxruntime.so.*
648+
libonnxruntime_providers_*.so
666649
TargetFolder: '$(Build.SourcesDirectory)\js\node\bin\napi-v3\linux\x64'
667650
- task: CopyFiles@2
668651
displayName: 'Copy nodejs binaries to: $(Build.SourcesDirectory)\js\node\bin\napi-v3\linux\x64\'

0 commit comments

Comments
 (0)