[d][change] 支持paddle op融合pass
支持paddle op融合pass
Showing
230.1 KB
... | @@ -4,14 +4,19 @@ | ... | @@ -4,14 +4,19 @@ |
"description": "paddle", | "description": "paddle", | ||
"main": "index.js", | "main": "index.js", | ||
"scripts": { | "scripts": { | ||
"server": "parcel ./src/index.html", | |||
"mnistdemo": "parcel ./examples/mnist/index.html", | "mnistdemo": "parcel ./examples/mnist/index.html", | ||
"mobilenet": "parcel ./examples/mobileNet/index.html", | "mobilenet": "parcel ./examples/mobileNet/index.html", | ||
"tinyYolo": "parcel ./examples/tinyYolo/index.html", | "tinyYolo": "parcel ./examples/tinyYolo/index.html", | ||
"huangfan": "parcel ./examples/huangfan/index.html", | "huangfan": "parcel ./examples/huangfan/index.html", | ||
"terrorModel": "parcel ./examples/terrorModel/index.html", | |||
"humanseg": "parcel ./examples/humanseg/index.html", | |||
"humanStream": "parcel ./examples/humanStream/index.html --port 1234 --https", | |||
"yolo": "parcel ./examples/yolo/index.html", | "yolo": "parcel ./examples/yolo/index.html", | ||
"videoDemo": "parcel ./examples/videoDemo.html --port 8123 --https", | "videoDemo": "parcel ./examples/videoDemo.html --port 8123 --https", | ||
"unitTest": "parcel ./test/unitTest.html", | "unitTest": "parcel ./test/unitTest.html", | ||
"test": "echo \"Error: no test specified\" && exit 1" | "test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "webpack -w" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.7.2", | "@babel/core": "^7.7.2", | ||
... | @@ -27,6 +32,7 @@ | ... | @@ -27,6 +32,7 @@ |
"babel-preset-react": "^6.24.1", | "babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | "babel-preset-stage-0": "^6.24.1", | ||
"babel-runtime": "^6.26.0", | "babel-runtime": "^6.26.0", | ||
"less": "^3.11.1", | |||
"parcel-bundler": "^1.10.3", | "parcel-bundler": "^1.10.3", | ||
"webpack-cli": "^3.3.6" | "webpack-cli": "^3.3.6" | ||
}, | }, | ||
... | @@ -34,7 +40,12 @@ | ... | @@ -34,7 +40,12 @@ |
"author": "", | "author": "", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"js-file-download": "^0.4.5", | "@babel/plugin-transform-runtime": "^7.6.2", | ||
"vconsole": "^3.3.2" | "@babel/runtime": "^7.7.2", | ||
"extract-text-webpack-plugin": "^4.0.0-beta.0", | |||
"js-file-download": "^0.4.10", | |||
"vconsole": "^3.3.2", | |||
"webpack": "^4.39.2", | |||
"webpack-zepto": "0.0.1" | |||
} | } | ||
} | } |
src/ops/dummy.js
0 → 100644
src/ops/feed.js
0 → 100644
src/ops/fetch.js
0 → 100644
src/shader/reshape2/conf.es6
0 → 100644
src/shader/reshape2/main.es6
0 → 100644
src/shader/reshape2/params.es6
0 → 100644
src/shader/transpose2/conf.es6
0 → 100644
src/shader/transpose2/main.es6
0 → 100644
src/shader/transpose2/params.es6
0 → 100644
test/data/banana.jpeg
0 → 100644
29.6 KB
test/data/map.json
0 → 100644
此差异已折叠。
此差异已折叠。
test/data/model.test.concat.json
0 → 100644
test/data/model.test.conv2d.json
0 → 100644
此差异已折叠。
此差异已折叠。
test/data/model.test.json
0 → 100644
此差异已折叠。
test/data/model.test.mul.json
0 → 100644
此差异已折叠。
test/data/model.test.pool2d.json
0 → 100644
此差异已折叠。
test/data/model.test.relu.json
0 → 100644
此差异已折叠。
test/data/model.test.scale.json
0 → 100644
test/data/model.test.softmax.json
0 → 100644
test/data/model.test.split.json
0 → 100644
文件已添加
文件已添加
文件已添加
文件已添加
tools/logger.es6
0 → 100644
tools/toWebModel.py
0 → 100644
webpack.config.js
0 → 100644