Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
Emmay
NiuTrans.Tensor
Commits
d9e3bea4
Commit
d9e3bea4
authored
Jul 12, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
define NULLTensor and NULLList
parent
174ed699
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
8 行增加
和
5 行删除
+8
-5
source/tensor/Main.cpp
+2
-3
source/tensor/XList.cpp
+2
-0
source/tensor/XList.h
+2
-0
source/tensor/XTensor.cpp
+1
-1
source/tensor/XTensor.h
+1
-1
没有找到文件。
source/tensor/Main.cpp
查看文件 @
d9e3bea4
...
...
@@ -81,15 +81,14 @@ void SmallTest()
a
.
Set2D
(
1.0
F
,
0
,
0
);
a
.
Set2D
(
2.0
F
,
1
,
1
);
//
b = Sum(a, Multiply(a, a));
b
=
Sum
(
a
,
Multiply
(
a
,
a
));
/*
cannot write this
!!!!!!!!!!!!! */
/*
this is prohibited
!!!!!!!!!!!!! */
//XTensor c = a * b + a;
//XTensor d = a + b + c.Lin(0.5F);
c
=
a
*
b
+
a
;
d
=
a
+
b
+
c
.
Lin
(
0.5
F
);
//d = a + b * b;
XLink
::
CheckNetwork
(
&
d
);
XLink
::
ShowNetwork
(
stderr
,
&
d
);
...
...
source/tensor/XList.cpp
查看文件 @
d9e3bea4
...
...
@@ -42,6 +42,8 @@
/* the nts (NiuTrans.Tensor) namespace */
namespace
nts
{
XList
NULLList
;
/* constructor */
XList
::
XList
()
{
...
...
source/tensor/XList.h
查看文件 @
d9e3bea4
...
...
@@ -96,6 +96,8 @@ public:
};
extern
XList
NULLList
;
}
/* end of the nts (NiuTrans.Tensor) namespace */
...
...
source/tensor/XTensor.cpp
查看文件 @
d9e3bea4
...
...
@@ -61,7 +61,7 @@ namespace nts{
int
tensorIDGlobal
=
0
;
MUTEX_HANDLE
tensorMutex
;
XTensor
first
Tensor
;
XTensor
NULL
Tensor
;
/* generate a tensor id */
int
MakeTensorID
()
...
...
source/tensor/XTensor.h
查看文件 @
d9e3bea4
...
...
@@ -334,7 +334,7 @@ public:
/* we make a unique id for every tensor */
extern
int
tensorIDGlobal
;
extern
MUTEX_HANDLE
tensorMutex
;
extern
XTensor
first
Tensor
;
extern
XTensor
NULL
Tensor
;
extern
int
MakeTensorID
();
/************************************************
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论