Skip to content

Commit 2717c17

Browse files
smk2007Sheil Kumarsnnn
authored
Fork the WinML APIs into the Microsoft namespace (microsoft#3503)
* Migrate winml to Microsoft Namespace (packaging changes are pending) * add ns_prefix toggle * fix packaging * Users/sheilk/add missing raw header (microsoft#3484) * add dualapipartition * wrong variable for repo root Co-authored-by: Sheil Kumar <[email protected]> * remove existence check to force failures * extra paren * dualapipartition needs to be referenced from the source * add microsoft.ai.machinelearning.dll to the output dir * rename the idl file so that assembly info is correctly added into the winmd * fix namespaces * update namespaces * default to microsoft, and add namespace override as build argument * update cmakesetings.json as well * remove from cmakelists.txt Co-authored-by: Sheil Kumar <[email protected]> Co-authored-by: Changming Sun <[email protected]>
1 parent fcb27c4 commit 2717c17

File tree

118 files changed

+2271
-2215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+2271
-2215
lines changed

cmake/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ else()
881881
list(APPEND onnxruntime_EXTERNAL_LIBRARIES ${CMAKE_DL_LIBS} Threads::Threads)
882882
endif()
883883

884-
# Default version parts for Windows.AI.MachineLearning.dll and onnxruntime.dll in non-ADO pipeline local builds
884+
# Default version parts for Microsoft.AI.MachineLearning.dll and onnxruntime.dll in non-ADO pipeline local builds
885885
set(VERSION_MAJOR_PART 0 CACHE STRING "First part of numeric file/product version.")
886886
set(VERSION_MINOR_PART 0 CACHE STRING "Second part of numeric file/product version.")
887887
set(VERSION_BUILD_PART 0 CACHE STRING "Third part of numeric file/product version.")

cmake/CMakeSettings.json

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
"value": "True",
1717
"type": "BOOL"
1818
},
19+
{
20+
"name": "onnxruntime_WINML_NAMESPACE_OVERRIDE",
21+
"value": "Microsoft"
22+
},
1923
{
2024
"name": "onnxruntime_USE_DML",
2125
"value": "True",
@@ -45,6 +49,10 @@
4549
"value": "True",
4650
"type": "BOOL"
4751
},
52+
{
53+
"name": "onnxruntime_WINML_NAMESPACE_OVERRIDE",
54+
"value": "Microsoft"
55+
},
4856
{
4957
"name": "onnxruntime_USE_DML",
5058
"value": "True",

cmake/winml.cmake

+60-23
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,24 @@ set(winml_lib_api_ort_dir ${REPO_ROOT}/winml/lib/api.ort)
2424
set(winml_lib_common_dir ${REPO_ROOT}/winml/lib/common)
2525
set(winml_lib_telemetry_dir ${REPO_ROOT}/winml/lib/telemetry)
2626

27+
if (onnxruntime_WINML_NAMESPACE_OVERRIDE)
28+
set(output_name "${onnxruntime_WINML_NAMESPACE_OVERRIDE}.AI.MachineLearning")
29+
set(idl_native_output_name "${onnxruntime_WINML_NAMESPACE_OVERRIDE}.AI.MachineLearning.Native")
30+
set(idl_native_internal_output_name "${onnxruntime_WINML_NAMESPACE_OVERRIDE}.AI.MachineLearning.Native.Internal")
31+
set(winml_midl_defines "/DROOT_NS=${onnxruntime_WINML_NAMESPACE_OVERRIDE}")
32+
set(winml_root_ns "${onnxruntime_WINML_NAMESPACE_OVERRIDE}")
33+
set(BINARY_NAME "${onnxruntime_WINML_NAMESPACE_OVERRIDE}.AI.MachineLearning.dll")
34+
set(winml_api_use_ns_prefix false)
35+
else()
36+
set(output_name "Microsoft.AI.MachineLearning")
37+
set(idl_native_output_name "Microsoft.AI.MachineLearning.Native")
38+
set(idl_native_internal_output_name "Microsoft.AI.MachineLearning.Native.Internal")
39+
set(winml_midl_defines "/DROOT_NS=Microsoft")
40+
set(winml_root_ns "Microsoft")
41+
set(BINARY_NAME "Microsoft.AI.MachineLearning.dll")
42+
set(winml_api_use_ns_prefix true)
43+
endif()
44+
2745
get_filename_component(exclusions "${winml_api_root}/exclusions.txt" ABSOLUTE)
2846
convert_forward_slashes_to_back(${exclusions} CPPWINRT_COMPONENT_EXCLUSION_LIST)
2947

@@ -51,25 +69,33 @@ add_generate_cppwinrt_sdk_headers_target(
5169

5270
# generate winml headers from idl
5371
target_cppwinrt(winml_api
54-
${winrt_idl} # winml winrt idl to compile
55-
${winml_lib_api_dir} # location for cppwinrt generated component sources
56-
${sdk_folder} # location of sdk folder
57-
${sdk_version} # sdk version
58-
${target_folder} # the folder this target will be placed under
72+
${winrt_idl} # winml winrt idl to compile
73+
${output_name} # outputs name
74+
${winml_lib_api_dir} # location for cppwinrt generated component sources
75+
${sdk_folder} # location of sdk folder
76+
${sdk_version} # sdk version
77+
${target_folder} # the folder this target will be placed under
78+
${winml_midl_defines} # the midl compiler defines
79+
${winml_api_use_ns_prefix} # set ns_prefix
5980
)
6081

6182
target_midl(winml_api_native
62-
${idl_native} # winml native idl to compile
63-
${sdk_folder} # location of sdk folder
64-
${sdk_version} # sdk version
65-
${target_folder} # the folder this target will be placed under
83+
${idl_native} # winml native idl to compile
84+
${idl_native_output_name} # outputs name
85+
${sdk_folder} # location of sdk folder
86+
${sdk_version} # sdk version
87+
${target_folder} # the folder this target will be placed under
88+
${winml_midl_defines} # the midl compiler defines
6689
)
6790

6891
target_midl(winml_api_native_internal
69-
${idl_native_internal} # winml internal native idl to compile
70-
${sdk_folder} # location of sdk folder
71-
${sdk_version} # sdk version
72-
${target_folder}) # the folder this target will be placed under
92+
${idl_native_internal} # winml internal native idl to compile
93+
${idl_native_internal_output_name} # outputs name
94+
${sdk_folder} # location of sdk folder
95+
${sdk_version} # sdk version
96+
${target_folder} # the folder this target will be placed under
97+
${winml_midl_defines} # the midl compiler defines
98+
)
7399

74100
###########################
75101
# Add winml_lib_telemetry
@@ -96,6 +122,7 @@ endif()
96122
# Compiler flags
97123
target_compile_definitions(winml_lib_telemetry PRIVATE PLATFORM_WINDOWS)
98124
target_compile_definitions(winml_lib_telemetry PRIVATE _SCL_SECURE_NO_WARNINGS) # remove warnings about unchecked iterators
125+
target_compile_definitions(winml_lib_telemetry PRIVATE BINARY_NAME=\"${BINARY_NAME}\")
99126

100127
# Specify the usage of a precompiled header
101128
target_precompiled_header(winml_lib_telemetry pch.h)
@@ -153,6 +180,7 @@ target_compile_features(winml_lib_ort PRIVATE cxx_std_17)
153180
target_compile_options(winml_lib_ort PRIVATE /GR- /await /wd4238)
154181

155182
# Compiler definitions
183+
target_compile_definitions(winml_lib_ort PRIVATE WINML_ROOT_NS=${winml_root_ns})
156184
target_compile_definitions(winml_lib_ort PRIVATE PLATFORM_WINDOWS)
157185
target_compile_definitions(winml_lib_ort PRIVATE _SCL_SECURE_NO_WARNINGS) # remove warnings about unchecked iterators
158186

@@ -280,6 +308,7 @@ target_compile_features(winml_lib_image PRIVATE cxx_std_17)
280308
target_compile_options(winml_lib_image PRIVATE /GR- /await /wd4238)
281309

282310
# Compiler flags
311+
target_compile_definitions(winml_lib_image PRIVATE WINML_ROOT_NS=${winml_root_ns})
283312
target_compile_definitions(winml_lib_image PRIVATE ONNX_NAMESPACE=onnx)
284313
target_compile_definitions(winml_lib_image PRIVATE ONNX_ML)
285314
target_compile_definitions(winml_lib_image PRIVATE LOTUS_LOG_THRESHOLD=2)
@@ -370,6 +399,7 @@ target_compile_features(winml_lib_api PRIVATE cxx_std_17)
370399
target_compile_options(winml_lib_api PRIVATE /GR- /await /bigobj /wd4238)
371400

372401
# Compiler flags
402+
target_compile_definitions(winml_lib_api PRIVATE WINML_ROOT_NS=${winml_root_ns})
373403
target_compile_definitions(winml_lib_api PRIVATE ONNX_NAMESPACE=onnx)
374404
target_compile_definitions(winml_lib_api PRIVATE ONNX_ML)
375405
target_compile_definitions(winml_lib_api PRIVATE LOTUS_LOG_THRESHOLD=2)
@@ -452,18 +482,23 @@ set_target_properties(winml_lib_common PROPERTIES CXX_STANDARD_REQUIRED ON)
452482
target_compile_options(winml_lib_common PRIVATE /GR- /await /bigobj /wd4238)
453483
target_link_libraries(winml_lib_common PRIVATE wil)
454484
target_include_directories(winml_lib_common PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/winml_api)
455-
target_compile_definitions(winml_lib_common PRIVATE
456-
ONNX_NAMESPACE=onnx
457-
ONNX_ML
458-
LOTUS_LOG_THRESHOLD=2
459-
LOTUS_ENABLE_STDERR_LOGGING
460-
PLATFORM_WINDOWS
461-
_SCL_SECURE_NO_WARNINGS)
485+
486+
# Compiler flags
487+
target_compile_definitions(winml_lib_common PRIVATE BINARY_NAME=\"${BINARY_NAME}\")
488+
target_compile_definitions(winml_lib_common PRIVATE WINML_ROOT_NS=${winml_root_ns})
489+
target_compile_definitions(winml_lib_common PRIVATE ONNX_NAMESPACE=onnx)
490+
target_compile_definitions(winml_lib_common PRIVATE ONNX_ML)
491+
target_compile_definitions(winml_lib_common PRIVATE LOTUS_LOG_THRESHOLD=2)
492+
target_compile_definitions(winml_lib_common PRIVATE LOTUS_ENABLE_STDERR_LOGGING)
493+
target_compile_definitions(winml_lib_common PRIVATE PLATFORM_WINDOWS)
494+
target_compile_definitions(winml_lib_common PRIVATE _SCL_SECURE_NO_WARNINGS)
495+
462496
add_dependencies(winml_lib_common winml_sdk_cppwinrt)
463497
add_dependencies(winml_lib_common winml_api)
464498
add_dependencies(winml_lib_common winml_api_native)
465499
add_dependencies(winml_lib_common winml_api_native_internal)
466500

501+
467502
target_include_directories(winml_lib_common PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/winml_api) # windows machine learning generated component headers
468503
target_include_directories(winml_lib_common PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/winml_api/comp_generated) # windows machine learning generated component headers
469504
target_include_directories(winml_lib_common PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/winml/sdk/cppwinrt/include) # sdk cppwinrt headers
@@ -489,7 +524,7 @@ set_source_files_properties(
489524
# Add library
490525
add_library(winml_dll SHARED
491526
${CMAKE_CURRENT_BINARY_DIR}/winml_api/comp_generated/module.g.excl.cpp
492-
${winml_dll_dir}/windows.ai.machinelearning.def
527+
${winml_dll_dir}/winml.def
493528
${winml_dll_dir}/winml.rc
494529
${winml_dll_dir}/pch.h
495530
${winml_dll_dir}/module.cpp
@@ -500,6 +535,7 @@ target_compile_features(winml_dll PRIVATE cxx_std_17)
500535
target_compile_options(winml_dll PRIVATE /GR- /await /bigobj /wd4238)
501536

502537
# Compiler definitions
538+
target_compile_definitions(winml_dll PRIVATE WINML_ROOT_NS=${winml_root_ns})
503539
target_compile_definitions(winml_dll PRIVATE ONNX_NAMESPACE=onnx)
504540
target_compile_definitions(winml_dll PRIVATE ONNX_ML)
505541
target_compile_definitions(winml_dll PRIVATE LOTUS_LOG_THRESHOLD=2)
@@ -510,6 +546,7 @@ target_compile_definitions(winml_dll PRIVATE VER_MINOR=${VERSION_MINOR_PART})
510546
target_compile_definitions(winml_dll PRIVATE VER_BUILD=${VERSION_BUILD_PART})
511547
target_compile_definitions(winml_dll PRIVATE VER_PRIVATE=${VERSION_PRIVATE_PART})
512548
target_compile_definitions(winml_dll PRIVATE VER_STRING=\"${VERSION_STRING}\")
549+
target_compile_definitions(winml_dll PRIVATE BINARY_NAME=\"${BINARY_NAME}\")
513550

514551
# Specify the usage of a precompiled header
515552
target_precompiled_header(winml_dll pch.h)
@@ -545,15 +582,15 @@ target_include_directories(winml_dll PRIVATE ${REPO_ROOT}/cmake/external/eigen)
545582
# Properties
546583
set_target_properties(winml_dll
547584
PROPERTIES
548-
OUTPUT_NAME windows.ai.machinelearning)
585+
OUTPUT_NAME ${output_name})
549586

550587
if (onnxruntime_USE_DML)
551588
set(delayload_dml "/DELAYLOAD:directml.dll")
552589
endif(onnxruntime_USE_DML)
553590

554591
set(os_component_link_flags_list ${os_component_link_flags})
555592
separate_arguments(os_component_link_flags_list)
556-
target_link_options(winml_dll PRIVATE /DEF:${WINML_DIR}/windows.ai.machinelearning.def ${os_component_link_flags_list} /DELAYLOAD:api-ms-win-core-libraryloader-l1-2-1.dll /DELAYLOAD:api-ms-win-core-threadpool-legacy-l1-1-0.dll /DELAYLOAD:api-ms-win-core-processtopology-obsolete-l1-1-0.dll /DELAYLOAD:api-ms-win-core-kernel32-legacy-l1-1-0.dll /DELAYLOAD:d3d12.dll /DELAYLOAD:d3d11.dll /DELAYLOAD:dxgi.dll ${delayload_dml})
593+
target_link_options(winml_dll PRIVATE /DEF:${WINML_DIR}/winml.def ${os_component_link_flags_list} /DELAYLOAD:api-ms-win-core-libraryloader-l1-2-1.dll /DELAYLOAD:api-ms-win-core-threadpool-legacy-l1-1-0.dll /DELAYLOAD:api-ms-win-core-processtopology-obsolete-l1-1-0.dll /DELAYLOAD:api-ms-win-core-kernel32-legacy-l1-1-0.dll /DELAYLOAD:d3d12.dll /DELAYLOAD:d3d11.dll /DELAYLOAD:dxgi.dll ${delayload_dml})
557594

558595
if (EXISTS ${dxcore_header})
559596
target_link_options(winml_dll PRIVATE /DELAYLOAD:ext-ms-win-dxcore-l1-*.dll)

cmake/winml_cppwinrt.cmake

+41-19
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@
2020
function(target_midl
2121
target_name
2222
idl_file
23-
sdk_folder # sdk kit directory
24-
sdk_version # sdk version
25-
folder_name)
23+
output_name # output name of the generated headers, winmd and tlb
24+
sdk_folder # sdk kit directory
25+
sdk_version # sdk version
26+
folder_name
27+
midl_options # defines for the midl compiler
28+
)
2629
if (MSVC)
2730
# get sdk include paths for midl
2831
get_sdk_include_folder(${sdk_folder} ${sdk_version} sdk_include_folder)
@@ -38,9 +41,7 @@ function(target_midl
3841
get_sdk_midl_exe(${sdk_folder} ${sdk_version} midl_exe)
3942

4043
# Filename variables
41-
get_filename_component(file_name_with_extension ${idl_file} NAME)
42-
string(REGEX REPLACE "\\.[^.]*$" "" file_name ${file_name_with_extension})
43-
set(header_filename ${file_name}.h)
44+
set(header_filename ${output_name}.h)
4445
convert_forward_slashes_to_back(${idl_file} idl_file_forward_slash)
4546

4647
# using add_custom_command trick to prevent rerunning script unless ${file} is changed
@@ -55,6 +56,7 @@ function(target_midl
5556
/I ${winrt_sdk_directory}
5657
/I ${CMAKE_CURRENT_SOURCE_DIR}
5758
/h ${header_filename}
59+
${midl_options}
5860
${idl_file_forward_slash}
5961
DEPENDS ${idl_file}
6062
)
@@ -70,12 +72,15 @@ function(target_midl
7072
endfunction()
7173

7274
function(target_cppwinrt
73-
target_name # the name of the target to add
74-
file # name of the idl file to compile
75-
out_sources_folder # path where generated sources will be placed
76-
sdk_folder # sdk kit directory
77-
sdk_version # sdk version
78-
folder_name # folder this target will be placed
75+
target_name # the name of the target to add
76+
file # name of the idl file to compile
77+
output_name # output name of the generated headers, winmd and tlb
78+
out_sources_folder # path where generated sources will be placed
79+
sdk_folder # sdk kit directory
80+
sdk_version # sdk version
81+
folder_name # folder this target will be placed
82+
midl_options # defines for the midl compiler
83+
set_ns_prefix # set ns_prefix option
7984
)
8085
if (MSVC)
8186
# get sdk include paths for midl
@@ -95,12 +100,9 @@ function(target_cppwinrt
95100
get_sdk_cppwinrt_exe(${sdk_folder} ${sdk_version} cppwinrt_exe)
96101

97102
# Filename variables
98-
convert_forward_slashes_to_back(${file} idl_file_forward_slash)
99-
get_filename_component(file_name_with_extension ${file} NAME)
100-
string(REGEX REPLACE "\\.[^.]*$" "" fileName ${file_name_with_extension})
101-
set(header_filename ${fileName}.h)
102-
set(winmd_filename ${fileName}.winmd)
103-
set(tlb_filename ${fileName}.tlb)
103+
set(header_filename ${output_name}.h)
104+
set(winmd_filename ${output_name}.winmd)
105+
set(tlb_filename ${output_name}.tlb)
104106

105107
# Get directory
106108
get_filename_component(idl_source_directory ${file} DIRECTORY)
@@ -111,6 +113,24 @@ function(target_cppwinrt
111113
convert_forward_slashes_to_back(${target_outputs}/comp_generated generated_dir_back_slash)
112114
convert_forward_slashes_to_back(${generated_dir_back_slash}/module.g.cpp module_g_cpp_back_slash)
113115
convert_forward_slashes_to_back(${generated_dir_back_slash}/module.g.excl.cpp module_g_ecxl_cpp_back_slash)
116+
117+
if (set_ns_prefix)
118+
set(ns_prefix "/ns_prefix")
119+
else()
120+
set(ns_prefix "")
121+
endif()
122+
123+
# Get name
124+
set(renamed_idl_filename ${output_name}.idl)
125+
set(renamed_idl_fullpath ${target_outputs}/${renamed_idl_filename})
126+
127+
get_filename_component(idl_source_filename ${file} NAME)
128+
set(copied_idl_fullpath ${target_outputs}/${idl_source_filename})
129+
130+
file(COPY ${file} DESTINATION ${target_outputs})
131+
file(RENAME ${copied_idl_fullpath} ${renamed_idl_fullpath})
132+
133+
convert_forward_slashes_to_back(${renamed_idl_fullpath} renamed_idl_fullpath_back_slash)
114134

115135
# using add_custom_command trick to prevent rerunning script unless ${file} is changed
116136
add_custom_command(
@@ -125,9 +145,11 @@ function(target_cppwinrt
125145
/I ${winrt_sdk_directory}
126146
/I ${idl_source_directory}
127147
/winmd ${winmd_filename}
148+
${ns_prefix}
128149
/h ${header_filename}
129150
/tlb ${tlb_filename}
130-
${idl_file_forward_slash}
151+
${midl_options}
152+
${renamed_idl_fullpath_back_slash}
131153
COMMAND
132154
${cppwinrt_exe} -in ${winmd_filename} -comp ${output_dir_back_slash} -ref ${sdk_metadata_directory} -out ${generated_dir_back_slash} -verbose
133155
COMMAND

cmake/winml_unittests.cmake

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ function(set_winml_target_properties target)
2323
CXX_EXTENSIONS NO
2424
)
2525
target_include_directories(${target} PRIVATE ${WINML_TEST_INC_DIR})
26+
target_compile_definitions(${target} PRIVATE WINML_ROOT_NS=${winml_root_ns})
27+
target_compile_definitions(${target} PRIVATE BINARY_NAME=\"${BINARY_NAME}\")
2628
endfunction()
2729

2830
function(add_winml_test)

0 commit comments

Comments
 (0)