Skip to content

Commit 7f09cf7

Browse files
author
Jenkins
committed
arm_compute v19.11.1
1 parent 0e205f7 commit 7f09cf7

File tree

7,821 files changed

+22427
-22242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,821 files changed

+22427
-22242
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2019 ARM Software
3+
Copyright (c) 2017-2020 ARM Software
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ Tutorials:
2727

2828
Documentation (API, changelogs, build guide, contribution guide, errata, etc.) available here:
2929

30+
- [v19.11.1](https://arm-software.github.io/ComputeLibrary/v19.11.1/)
3031
- [v19.11](https://arm-software.github.io/ComputeLibrary/v19.11/)
32+
- [v19.08.1](https://arm-software.github.io/ComputeLibrary/v19.08.1/)
3133
- [v19.08](https://arm-software.github.io/ComputeLibrary/v19.08/)
3234
- [v19.05](https://arm-software.github.io/ComputeLibrary/v19.05/)
3335
- [v19.02](https://arm-software.github.io/ComputeLibrary/v19.02/)
@@ -47,8 +49,12 @@ Documentation (API, changelogs, build guide, contribution guide, errata, etc.) a
4749

4850
Binaries available here:
4951

52+
- [v19.11.1-linux](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.11.1/arm_compute-v19.11.1-bin-linux.tar.gz)
53+
- [v19.11.1-android](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.11.1/arm_compute-v19.11.1-bin-android.tar.gz)
5054
- [v19.11-linux](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.11/arm_compute-v19.11-bin-linux.tar.gz)
5155
- [v19.11-android](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.11/arm_compute-v19.11-bin-android.tar.gz)
56+
- [v19.08.1-linux](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.08.1/arm_compute-v19.08.1-bin-linux.tar.gz)
57+
- [v19.08.1-android](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.08.1/arm_compute-v19.08.1-bin-android.tar.gz)
5258
- [v19.08-linux](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.08/arm_compute-v19.08-bin-linux.tar.gz)
5359
- [v19.08-android](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.08/arm_compute-v19.08-bin-android.tar.gz)
5460
- [v19.05-linux](https://github.com/ARM-software/ComputeLibrary/releases/download/v19.05/arm_compute-v19.05-bin-linux.tar.gz)

SConscript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import os.path
2424
import re
2525
import subprocess
2626

27-
VERSION = "v19.11"
28-
SONAME_VERSION="17.0.0"
27+
VERSION = "v19.11.1"
28+
SONAME_VERSION="17.1.0"
2929

3030
Import('env')
3131
Import('vars')

arm_compute/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2019 ARM Limited.
2+
* Copyright (c) 2017-2020 ARM Limited.
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -72,6 +72,7 @@ class CLDeconvolutionLayerUpsampleKernel : public ICLKernel
7272
const ICLTensor *_input;
7373
ICLTensor *_output;
7474
PadStrideInfo _info;
75+
DataLayout _data_layout;
7576
};
7677
} // namespace arm_compute
7778
#endif /*__ARM_COMPUTE_CLDECONVOLUTIONLAYERUPSAMPLEKERNEL_H__ */

arm_compute/core/CL/kernels/CLDirectConvolutionLayerKernel.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2019 ARM Limited.
2+
* Copyright (c) 2017-2020 ARM Limited.
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -94,6 +94,7 @@ class CLDirectConvolutionLayerKernel : public ICLKernel
9494
const ICLTensor *_biases;
9595
const ICLTensor *_weights;
9696
ICLTensor *_output;
97+
DataLayout _data_layout;
9798
BorderSize _border_size;
9899
int _conv_stride_x;
99100
int _conv_stride_y;

arm_compute/core/CL/kernels/CLIm2ColKernel.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ class CLIm2ColKernel : public ICLKernel
103103
public:
104104
const ICLTensor *_input;
105105
ICLTensor *_output;
106+
DataLayout _data_layout;
106107
std::pair<unsigned int, unsigned int> _convolved_dims;
107108
unsigned int _num_elems_processed_per_iteration;
108109
Size2D _kernel_dims;

arm_compute/core/CL/kernels/CLPoolingLayerKernel.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class CLPoolingLayerKernel : public ICLKernel
7575
const ICLTensor *_input;
7676
ICLTensor *_output;
7777
PoolingLayerInfo _pool_info;
78+
DataLayout _data_layout;
7879
BorderSize _border_size;
7980
unsigned int _num_elems_processed_per_iteration;
8081
};

arm_compute/core/CL/kernels/CLScaleKernel.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class CLScaleKernel : public ICLSimple2DKernel
7575

7676
public:
7777
InterpolationPolicy _interpolationPolicy = InterpolationPolicy::BILINEAR;
78+
DataLayout _data_layout = DataLayout::UNKNOWN;
7879
};
7980
} // namespace arm_compute
8081
#endif /*__ARM_COMPUTE_CLSCALEKERNEL_H__ */

arm_compute/core/CL/kernels/CLUpsampleLayerKernel.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class CLUpsampleLayerKernel : public ICLKernel
7373
const ICLTensor *_input;
7474
ICLTensor *_output;
7575
Size2D _info;
76+
DataLayout _data_layout;
7677
unsigned int _num_elems_processed_per_iteration_input_x;
7778
};
7879
} // namespace arm_compute

arm_compute/core/CL/kernels/CLWinogradInputTransformKernel.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ class CLWinogradInputTransformKernel : public ICLKernel
9393
BorderSize _border_size;
9494
const ICLTensor *_input;
9595
ICLTensor *_output;
96+
DataLayout _data_layout;
9697
int _num_tiles_x;
9798
int _num_tiles_y;
9899
unsigned int _step_z;

0 commit comments

Comments
 (0)