Home
last modified time | relevance | path

Searched refs:aliasing (Results 1 – 25 of 415) sorted by relevance

12345678910>>...17

/external/eigen/doc/
DTopicAliasing.dox5 In %Eigen, aliasing refers to assignment statement in which the same matrix (or array or vector) ap…
7 mat.transpose();</tt> exhibit aliasing. The aliasing in the first example is harmless, but the alia…
8 second example leads to unexpected results. This page explains what aliasing is, when it is harmful…
16 Here is a simple example exhibiting aliasing:
31 This assignment exhibits aliasing: the coefficient \c mat(1,1) appears both in the block
47 vec.head(n)</tt> and <tt>mat = mat.block(i,j,r,c)</tt> exhibit aliasing.
49 In general, aliasing cannot be detected at compile time: if \c mat in the first example were a bit …
50 then the blocks would not overlap, and there would be no aliasing problem. However, %Eigen does det…
51 instances of aliasing, albeit at run time. The following example exhibiting aliasing was mentioned…
63 Again, the output shows the aliasing issue. However, by default %Eigen uses a run-time assertion to…
[all …]
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Daliasing.md3 This document describes the aliasing API for XLA: when building an XLA program,
4 you can specify the desired aliasing between the input and output buffers.
6 ## Defining aliasing at compile-time
27 To perform such an update efficiently, you can specify the input aliasing:
44 API to specify the aliasing programmatically.
46 ## Defining aliasing at run-time
48 The aliasing defined in the previous step is specified during the _compilation_.
59 requested by the compile-time aliasing API.
72 updates are aliased at compile time (the aliasing at runtime depends on whether
/external/clang/test/Frontend/
Dopencl.cl9 // RUN: %clang_cc1 -cl-std=CL1.1 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CH…
10 // RUN: %clang_cc1 -cl-std=CL1.2 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CH…
11 // RUN: %clang_cc1 -cl-std=CL2.0 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVAL…
25 …LID-OPENCL-VERSION11: warning: OpenCL version 1.1 does not support the option '-cl-strict-aliasing'
26 …LID-OPENCL-VERSION12: warning: OpenCL version 1.2 does not support the option '-cl-strict-aliasing'
27 …LID-OPENCL-VERSION20: warning: OpenCL version 2.0 does not support the option '-cl-strict-aliasing'
/external/llvm-project/clang/test/Frontend/
Dopencl.cl10 // RUN: %clang_cc1 -cl-std=CL1.1 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CH…
11 // RUN: %clang_cc1 -cl-std=CL1.2 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CH…
12 // RUN: %clang_cc1 -cl-std=CL2.0 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVAL…
33 …LID-OPENCL-VERSION11: warning: OpenCL version 1.1 does not support the option '-cl-strict-aliasing'
34 …LID-OPENCL-VERSION12: warning: OpenCL version 1.2 does not support the option '-cl-strict-aliasing'
35 …LID-OPENCL-VERSION20: warning: OpenCL version 2.0 does not support the option '-cl-strict-aliasing'
/external/icu/icu4c/source/test/testdata/
Dtestaliases.txt11 // This is a test resource to check whether the aliasing mechanism works
20 // aliasing nonexist position
23 // aliasing to another resource
32 // aliasing using position
35 // aliasing arrays
42 // Test aliasing parts of an array using position
/external/protobuf/src/google/protobuf/
Dmessage_lite.cc130 template <bool aliasing>
134 aliasing, &ptr, input); in MergePartialFromImpl()
140 template <bool aliasing>
144 aliasing, &ptr, input); in MergePartialFromImpl()
150 template <bool aliasing>
154 aliasing, &ptr, input.zcis, input.limit); in MergePartialFromImpl()
165 bool aliasing) {
170 template <bool aliasing>
174 return InlineMergePartialEntireStream(&decoder, msg, aliasing);
177 template <bool aliasing>
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
DBUILD31 "-fno-strict-aliasing",
121 "-fno-strict-aliasing",
149 "-fno-strict-aliasing",
167 "-fno-strict-aliasing",
195 "-fno-strict-aliasing",
226 "-fno-strict-aliasing",
253 "-fno-strict-aliasing",
285 "-fno-strict-aliasing",
332 "-fno-strict-aliasing",
381 "-fno-strict-aliasing",
[all …]
/external/mesa3d/docs/
Dhelpwanted.rst15 #. **Remove aliasing warnings.** Enable GCC's
16 ``-Wstrict-aliasing=2 -fstrict-aliasing`` arguments, and track down
17 aliasing issues in the code.
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dresource-alias-analysis-test.mlir33 // Tests aliasing of the two resource handles that refer to the same variable.
71 // Test aliasing through IfOp
110 // Test aliasing through CaseOp
156 // Test aliasing through WhileOp
220 // Test aliasing through IfRegion
249 // Test aliasing through CaseRegion
280 // Test aliasing through WhileRegion
313 // Test aliasing through calls
334 // Test aliasing through tf_device.launch
350 // Test aliasing through tf_device.cluster
/external/mesa3d/docs/relnotes/
D17.2.4.rst49 - cherry-ignore: broadcom/vc5: Propagate vc4 aliasing fix to vc5.
75 - intel/fs: Handle flag read/write aliasing in needs_src_copy
102 - broadcom/vc4: Fix aliasing issue
/external/llvm-project/polly/test/Isl/CodeGen/
Dtwo-scops-in-row.ll2 ; RUN: opt %loadPolly -polly-ast -analyze -polly-ignore-aliasing < %s | FileCheck %s -check-prefix=…
3 ; RUN: opt %loadPolly -polly-codegen -polly-ignore-aliasing -disable-output < %s
/external/llvm-project/llvm/test/Analysis/TypeBasedAliasAnalysis/
Dprecedence.ll10 ; Test for simple MustAlias aliasing.
25 ; Test for PartialAlias aliasing. GVN doesn't yet eliminate the load
/external/adhd/defs/
Dc.mk81 -Wstrict-aliasing \
82 -Wstrict-aliasing=3 \
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/
Dprecedence.ll10 ; Test for simple MustAlias aliasing.
25 ; Test for PartialAlias aliasing. GVN doesn't yet eliminate the load
/external/llvm-project/polly/test/ScopInfo/
Dvariant_base_pointer.ll1 ; RUN: opt %loadPolly -polly-ignore-aliasing -polly-invariant-load-hoisting=true -polly-scops -anal…
2 ; RUN: opt %loadPolly -polly-ignore-aliasing -polly-invariant-load-hoisting=true -polly-codegen -an…
/external/llvm-project/polly/lib/External/isl/m4/
Dax_cc_maxopt.m420 # Note also that the flags assume that ANSI C aliasing rules are followed
21 # by the code (e.g. for gcc's -fstrict-aliasing), and that floating-point
144 # -fstrict-aliasing for gcc-2.95+
145 AX_CHECK_COMPILER_FLAGS(-fstrict-aliasing,
146 CFLAGS="$CFLAGS -fstrict-aliasing")
/external/python/cpython2/Modules/_ctypes/libffi/m4/
Dax_cc_maxopt.m420 # Note also that the flags assume that ANSI C aliasing rules are followed
21 # by the code (e.g. for gcc's -fstrict-aliasing), and that floating-point
147 # -fstrict-aliasing for gcc-2.95+
148 AX_CHECK_COMPILE_FLAG(-fstrict-aliasing,
149 CFLAGS="$CFLAGS -fstrict-aliasing")
/external/libffi/m4/
Dax_cc_maxopt.m420 # Note also that the flags assume that ANSI C aliasing rules are followed
21 # by the code (e.g. for gcc's -fstrict-aliasing), and that floating-point
155 # -fstrict-aliasing for gcc-2.95+
156 AX_CHECK_COMPILE_FLAG(-fstrict-aliasing,
157 CFLAGS="$CFLAGS -fstrict-aliasing")
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dtrivialmemaliascheck.ll4 ; non-aliasing. However, there are some cases where the scheduler cannot
10 ; dependence due to aliasing between the two instructions.
/external/linux-kselftest/tools/testing/selftests/ia64/
D.gitignore1 aliasing-test
DMakefile2 TEST_PROGS := aliasing-test
/external/clang/test/CodeGenOpenCL/
Dcl-strict-aliasing.cl1 // RUN: %clang_cc1 -x cl -emit-llvm -cl-strict-aliasing < %s
/external/llvm-project/clang/test/CodeGenOpenCL/
Dcl-strict-aliasing.cl1 // RUN: %clang_cc1 -x cl -emit-llvm -cl-strict-aliasing < %s
/external/ltp/include/mk/
Dconfig.mk.in67 # Please see README.mk-devel about -fstrict-aliasing.
68 OPT_CFLAGS ?= -O2 -fno-strict-aliasing -pipe
/external/iputils/Modules/
DMakefile5 CCOPT=-O2 -Wstrict-prototypes -Wall -Werror -fno-strict-aliasing -fno-common

12345678910>>...17