Update to 1.8.0

This commit is contained in:
Dwayne Robinson 2021-11-19 04:44:32 -08:00
parent 99afb87a02
commit e0ffc30a0b
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ if (NOT onnxruntime_USE_CUSTOM_DIRECTML)
set(NUGET_CONFIG ${PROJECT_SOURCE_DIR}/../NuGet.config)
set(PACKAGES_CONFIG ${PROJECT_SOURCE_DIR}/../packages.config)
get_filename_component(PACKAGES_DIR ${CMAKE_CURRENT_BINARY_DIR}/../packages ABSOLUTE)
set(DML_PACKAGE_DIR ${PACKAGES_DIR}/Microsoft.AI.DirectML.Preview.1.8.0-dev20211114)
set(DML_PACKAGE_DIR ${PACKAGES_DIR}/Microsoft.AI.DirectML.1.8.0)
set(DML_SHARED_LIB DirectML.dll)
# Restore nuget packages, which will pull down the DirectML redist package

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="GoogleTestAdapter" version="0.17.1" targetFramework="net46" />
<package id="Microsoft.AI.DirectML.Preview" version="1.8.0-dev20211114" targetFramework="native" />
<package id="Microsoft.AI.DirectML" version="1.8.0" targetFramework="native" />
<package id="Microsoft.Windows.CppWinRT" version="2.0.201113.7" targetFramework="native" />
</packages>

View file

@ -164,7 +164,7 @@ def generate_repo_url(list, repo_url, commit_id):
def generate_dependencies(list, package_name, version):
dml_dependency = '<dependency id="Microsoft.AI.DirectML.Preview" version="1.8.0-dev20211114"/>'
dml_dependency = '<dependency id="Microsoft.AI.DirectML" version="1.8.0"/>'
if (package_name == 'Microsoft.AI.MachineLearning'):
list.append('<dependencies>')