update version 103 for windows

This commit is contained in:
Dun Liang 2021-09-15 17:47:33 +08:00
parent 500dfc6ee3
commit 40cb853e21
3 changed files with 2 additions and 1 deletions

View File

@ -1 +0,0 @@
../../README.cn.md

1
doc/source/README.cn.md Normal file
View File

@ -0,0 +1 @@
../../README.cn.md

View File

@ -9,7 +9,7 @@
# file 'LICENSE.txt', which is part of this source code package.
# ***************************************************************
__version__ = '1.2.3.102'
__version__ = '1.2.3.103'
from jittor_utils import lock
with lock.lock_scope():
ori_int = int

View File

@ -21,6 +21,7 @@ void* AlignedAllocator::alloc(size_t size, size_t& allocation) {
return new char[size];
#else
return aligned_alloc(alignment, size);
#endif
#else
return _aligned_malloc(size, alignment);
#endif