aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorramelg01 <ramy.elgammal@arm.com>2022-03-29 19:09:56 +0100
committerRamy Elgammal <ramy.elgammal@arm.com>2022-03-30 12:24:17 +0000
commit36a1c119cfabfe3da6ea3ef69a0a21929cb418d6 (patch)
tree1aa546a92ee6a740bcd8d73bdeba82853551e9a7
parenta5d61bf5cd566955f3902e07c43c5c1c059bf8e9 (diff)
downloadComputeLibrary-36a1c119cfabfe3da6ea3ef69a0a21929cb418d6.tar.gz
Update referring to master branch to main for github and acl-gerrit
Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Partially Resolves: COMPMID-5033 Change-Id: Idfd204d5058600bf735d341f618944e42a84f7cb Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7353 Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--docs/contributor_guide/adding_operator.dox10
-rw-r--r--docs/contributor_guide/contribution_guidelines.dox2
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/contributor_guide/adding_operator.dox b/docs/contributor_guide/adding_operator.dox
index ab174838cc..b9bc7e09ce 100644
--- a/docs/contributor_guide/adding_operator.dox
+++ b/docs/contributor_guide/adding_operator.dox
@@ -1,5 +1,5 @@
///
-/// Copyright (c) 2018-2021 Arm Limited.
+/// Copyright (c) 2018-2022 Arm Limited.
///
/// SPDX-License-Identifier: MIT
///
@@ -59,7 +59,7 @@ All the datatype classes or structures are grouped in the core library folder ar
If an operator handles a new datatype, it must be added to the library. While adding a new data type to the library, it's necessary to implement the function to enable printing, the to_string() method and the output stream insertion (<<) operator. Every datatype implements these two functions in utils/TypePrinter.h
-A quick example, in <a href="https://github.com/ARM-software/ComputeLibrary/blob/master/arm_compute/core/Types.h">Types.h</a> we add:
+A quick example, in <a href="https://github.com/ARM-software/ComputeLibrary/blob/main/arm_compute/core/Types.h">Types.h</a> we add:
@snippet arm_compute/core/Types.h DataLayout enum definition
@@ -97,12 +97,12 @@ We must register the new layer in the respective libraries:
These files contain the list of all kernels available in the corresponding Compute Library's backend, for example CLKernels:
@code{.cpp}
-...
+...
#include "src/core/CL/kernels/CLMinMaxLayerKernel.h"
#include "src/core/CL/kernels/CLMinMaxLocationKernel.h"
-...
+...
#include "src/core/CL/kernels/CLReshapeLayerKernel.h"
-...
+...
@endcode
diff --git a/docs/contributor_guide/contribution_guidelines.dox b/docs/contributor_guide/contribution_guidelines.dox
index ab02adfc32..c795fe7118 100644
--- a/docs/contributor_guide/contribution_guidelines.dox
+++ b/docs/contributor_guide/contribution_guidelines.dox
@@ -441,7 +441,7 @@ You can add this to your patch with:
You are now ready to submit your patch for review:
- git push acl-gerrit HEAD:refs/for/master
+ git push acl-gerrit HEAD:refs/for/main
@section S5_3_code_review Patch acceptance and code review