Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
e4018d12
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
大约 1 年 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
e4018d12
编写于
4月 04, 2018
作者:
D
daminglu
提交者:
GitHub
4月 04, 2018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix dagre-d3 require issue (#359)
上级
4a0511d4
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
7 addition
and
5 deletion
+7
-5
frontend/package.json
frontend/package.json
+0
-1
frontend/src/graph/ui/Chart.vue
frontend/src/graph/ui/Chart.vue
+0
-1
frontend/template/index.html
frontend/template/index.html
+1
-0
frontend/tool/webpack.config.js
frontend/tool/webpack.config.js
+4
-1
visualdl/logic/sdk.h
visualdl/logic/sdk.h
+2
-2
未找到文件。
frontend/package.json
浏览文件 @
e4018d12
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
"d3"
:
"^4.7.4"
,
"d3"
:
"^4.7.4"
,
"d3-format"
:
"^1.2.1"
,
"d3-format"
:
"^1.2.1"
,
"dagre"
:
"^0.8.2"
,
"dagre"
:
"^0.8.2"
,
"dagre-d3"
:
"^0.6.1"
,
"echarts"
:
"^4.0.0"
,
"echarts"
:
"^4.0.0"
,
"echarts-gl"
:
"^1.1.0"
,
"echarts-gl"
:
"^1.1.0"
,
"file-saver"
:
"^1.3.3"
,
"file-saver"
:
"^1.3.3"
,
...
...
frontend/src/graph/ui/Chart.vue
浏览文件 @
e4018d12
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
// for d3 drawing
// for d3 drawing
import
*
as
d3
from
"
d3
"
;
import
*
as
d3
from
"
d3
"
;
import
*
as
dagre
from
"
dagre
"
;
import
*
as
dagre
from
"
dagre
"
;
import
*
as
dagreD3
from
'
dagre-d3
'
;
export
default
{
export
default
{
props
:
[
'
fitScreen
'
,
'
download
'
,
'
scale
'
,
'
curNode
'
],
props
:
[
'
fitScreen
'
,
'
download
'
,
'
scale
'
,
'
curNode
'
],
...
...
frontend/template/index.html
浏览文件 @
e4018d12
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=Edge"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=Edge"
>
<link
href=
'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'
rel=
"stylesheet"
>
<link
href=
'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'
rel=
"stylesheet"
>
<script
src=
"https://dagrejs.github.io/project/dagre-d3/latest/dagre-d3.min.js"
></script>
</head>
</head>
<body>
<body>
<div
id=
"root"
></div>
<div
id=
"root"
></div>
...
...
frontend/tool/webpack.config.js
浏览文件 @
e4018d12
...
@@ -123,7 +123,10 @@ const config = {
...
@@ -123,7 +123,10 @@ const config = {
test
:
/
\.(
styl
)
$/
test
:
/
\.(
styl
)
$/
}),
}),
new
ExtractTextPlugin
({
filename
:
'
[name].css
'
})
new
ExtractTextPlugin
({
filename
:
'
[name].css
'
})
]
],
externals
:
{
dagreD3
:
'
dagre-d3
'
}
};
};
// template config
// template config
...
...
visualdl/logic/sdk.h
浏览文件 @
e4018d12
...
@@ -440,8 +440,8 @@ private:
...
@@ -440,8 +440,8 @@ private:
};
};
/*
/*
* Audio reader.
* Audio reader.
*/
*/
struct
AudioReader
{
struct
AudioReader
{
using
value_t
=
typename
Audio
::
value_t
;
using
value_t
=
typename
Audio
::
value_t
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录