Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
2e29d186
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2e29d186
编写于
8月 16, 2018
作者:
H
hanbuhe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
removed redentant fpga prefix
上级
d383ae40
变更
13
显示空白变更内容
内联
并排
Showing
13 changed file
with
15 addition
and
14 deletion
+15
-14
src/fpga/api.cpp
src/fpga/api.cpp
+1
-1
src/fpga/api.h
src/fpga/api.h
+0
-0
src/fpga/quantization.cpp
src/fpga/quantization.cpp
+1
-1
src/fpga/quantization.h
src/fpga/quantization.h
+0
-0
src/memory/t_malloc.cpp
src/memory/t_malloc.cpp
+1
-1
src/operators/kernel/fpga/conv_add_bn_kernel.cpp
src/operators/kernel/fpga/conv_add_bn_kernel.cpp
+2
-2
src/operators/kernel/fpga/conv_add_bn_relu_kernel.cpp
src/operators/kernel/fpga/conv_add_bn_relu_kernel.cpp
+1
-1
src/operators/kernel/fpga/conv_add_relu_kernel.cpp
src/operators/kernel/fpga/conv_add_relu_kernel.cpp
+1
-1
src/operators/kernel/fpga/conv_bn_kernel.cpp
src/operators/kernel/fpga/conv_bn_kernel.cpp
+2
-2
src/operators/kernel/fpga/conv_bn_relu_kernel.cpp
src/operators/kernel/fpga/conv_bn_relu_kernel.cpp
+1
-1
src/operators/kernel/fpga/fc_relu_kernel.cpp
src/operators/kernel/fpga/fc_relu_kernel.cpp
+3
-2
src/operators/kernel/fpga/softmax_kernel.cpp
src/operators/kernel/fpga/softmax_kernel.cpp
+1
-1
src/operators/op_param.h
src/operators/op_param.h
+1
-1
未找到文件。
src/fpga/api
/fpga_api
.cpp
→
src/fpga/api.cpp
浏览文件 @
2e29d186
...
...
@@ -27,7 +27,7 @@ limitations under the License. */
#include <cstdio>
#include <cstring>
#include "
fpga/api/fpga_
api.h"
#include "api.h"
namespace
paddle_mobile
{
namespace
fpga
{
...
...
src/fpga/api
/fpga_api
.h
→
src/fpga/api.h
浏览文件 @
2e29d186
文件已移动
src/fpga/
fpga_quantil
ization.cpp
→
src/fpga/
quant
ization.cpp
浏览文件 @
2e29d186
...
...
@@ -12,7 +12,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/
quant
ization.h"
#include <algorithm>
namespace
paddle_mobile
{
...
...
src/fpga/
fpga_quantil
ization.h
→
src/fpga/
quant
ization.h
浏览文件 @
2e29d186
文件已移动
src/memory/t_malloc.cpp
浏览文件 @
2e29d186
...
...
@@ -18,7 +18,7 @@ limitations under the License. */
#ifdef PADDLE_MOBILE_FPGA
#include "fpga/api
/fpga_api
.h"
#include "fpga/api.h"
#endif
...
...
src/operators/kernel/fpga/conv_add_bn_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -15,8 +15,8 @@ limitations under the License. */
#ifdef FUSION_CONVADDBN_OP
#include "operators/kernel/conv_add_bn_kernel.h"
#include "fpga/api
/fpga_api
.h"
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/api.h"
#include "fpga/
quant
ization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/conv_add_bn_relu_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -15,7 +15,7 @@ limitations under the License. */
#ifdef FUSION_CONVADDBNRELU_OP
#include "operators/kernel/conv_add_bn_relu_kernel.h"
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/
quant
ization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/conv_add_relu_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -15,7 +15,7 @@ limitations under the License. */
#ifdef FUSION_CONVADDRELU_OP
#include "operators/kernel/conv_add_relu_kernel.h"
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/
quant
ization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/conv_bn_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -15,8 +15,8 @@ limitations under the License. */
#ifdef FUSION_CONVBN_OP
#include "operators/kernel/conv_bn_kernel.h"
#include "fpga/api
/fpga_api
.h"
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/api.h"
#include "fpga/
quant
ization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/conv_bn_relu_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -15,7 +15,7 @@ limitations under the License. */
#ifdef FUSION_CONVBNRELU_OP
#include "operators/kernel/conv_bn_relu_kernel.h"
#include "fpga/
fpga_quantil
ization.h"
#include "fpga/
quant
ization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/fc_relu_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -13,8 +13,9 @@ See the License for the specific language governing permissions and
limitations under the License. */
#ifdef FUSION_FCRELU_OP
#include "operators/kernel/fc_relu_kernel.h"
#include "fpga/api/fpga_api.h"
#include "fpga/fpga_quantilization.h"
#include "fpga/api.h"
#include "fpga/quantization.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/kernel/fpga/softmax_kernel.cpp
浏览文件 @
2e29d186
...
...
@@ -17,7 +17,7 @@ limitations under the License. */
#include "../softmax_kernel.h"
#include "../central-arm-func/softmax_arm_func.h"
#include "common/types.h"
#include "fpga/api
/fpga_api
.h"
#include "fpga/api.h"
#include "operators/math/softmax.h"
namespace
paddle_mobile
{
namespace
operators
{
...
...
src/operators/op_param.h
浏览文件 @
2e29d186
...
...
@@ -23,7 +23,7 @@ limitations under the License. */
#include "framework/tensor.h"
#include "framework/variable.h"
#ifdef PADDLE_MOBILE_FPGA
#include "fpga/api
/fpga_api
.h"
#include "fpga/api.h"
#endif
namespace
paddle_mobile
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录