Browse Source

Serving, version 1.1.1

tags/v1.1.1
xuyongfei 5 years ago
parent
commit
0bbd2fcc3c
3 changed files with 15 additions and 4 deletions
  1. +13
    -0
      RELEASE.md
  2. +1
    -1
      setup.py
  3. +1
    -3
      tests/ut/cpp/stub/include/api/data_type.h

+ 13
- 0
RELEASE.md View File

@@ -1,3 +1,16 @@
# MindSpore Serving 1.1.1 Release Notes

## Major Features and Improvements

* Adapts new C++ inference interface for MindSpore version 1.1.1.

## Bug fixes

* [BUGFIX] Fix bug in transforming result of type int16 in python Client.
* [BUGFIX] Fix bytes type misidentified as str type after python preprocess and postprocess.
* [BUGFIX] Fix bug releasing C++ tensor data when it's wrapped as numpy object sometimes.
* [BUGFIX] Update RuntimeError to warning log when check Ascend environment failed.

# MindSpore Serving 1.1.0 Release Notes

## Major Features and Improvements


+ 1
- 1
setup.py View File

@@ -23,7 +23,7 @@ from setuptools import setup, find_packages
from setuptools.command.egg_info import egg_info
from setuptools.command.build_py import build_py

version = '1.1.0'
version = '1.1.1'

backend_policy = os.getenv('BACKEND_POLICY')
commit_id = os.getenv('COMMIT_ID').replace("\n", "")


+ 1
- 3
tests/ut/cpp/stub/include/api/data_type.h View File

@@ -1,7 +1,5 @@
/**
* This is the C++ adaptation and derivative work of Myia (https://github.com/mila-iqia/myia/).
*
* Copyright 2019-2020 Huawei Technologies Co., Ltd
* Copyright 2020 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


Loading…
Cancel
Save