Home
last modified time | relevance | path

Searched refs:is_thread_local (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_assignment.h84 bool is_thread_local() const { return is_thread_local_; } in is_thread_local() function
85 void set_is_thread_local(bool is_thread_local) { in set_is_thread_local() argument
86 is_thread_local_ = is_thread_local; in set_is_thread_local()
96 return !is_thread_local() && !is_tuple(); in is_reusable()
233 !is_thread_local() && in IsPreallocatedTempBuffer()
645 bool is_thread_local,
663 const HloBuffer* hlo_buffer, bool is_thread_local,
Dbuffer_assignment.cc145 bool is_thread_local = worklist_front.second; in GatherComputationsByAllocationType() local
151 if ((is_thread_local && in_thread_local_set) || in GatherComputationsByAllocationType()
152 (!is_thread_local && in_global_set)) { in GatherComputationsByAllocationType()
161 if ((is_thread_local && in_global_set) || in GatherComputationsByAllocationType()
162 (!is_thread_local && in_thread_local_set)) { in GatherComputationsByAllocationType()
169 if (is_thread_local) { in GatherComputationsByAllocationType()
185 if (is_thread_local) { in GatherComputationsByAllocationType()
357 if (is_thread_local()) { in ToString()
1099 const HloBuffer* hlo_buffer, bool is_thread_local, in AssignSingleHloBuffer() argument
1147 if (is_thread_local) { in AssignSingleHloBuffer()
[all …]
Dbuffer_assignment_test.cc1408 EXPECT_TRUE(map_param_alloc.is_thread_local()); in TEST_F()
1413 EXPECT_TRUE(map_root_alloc.is_thread_local()); in TEST_F()
1419 EXPECT_FALSE(call_param_alloc.is_thread_local()); in TEST_F()
1423 EXPECT_FALSE(call_root_alloc.is_thread_local()); in TEST_F()
1430 EXPECT_FALSE(param_alloc.is_thread_local()); in TEST_F()
1435 EXPECT_FALSE(map_alloc.is_thread_local()); in TEST_F()
Dhlo.proto438 bool is_thread_local = 3; field
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dbuffer_info_util.cc28 if (allocation.is_thread_local()) { in CreateBufferInfosFromBufferAssignment()
Dcpu_executable.cc108 } else if (allocation.is_thread_local()) { in MemoryForAllocation()
Dir_emitter.cc200 if (root_allocation && root_allocation->is_thread_local()) { in EmitComputation()
3102 if (slice.allocation()->is_thread_local()) { in EmitBufferPointer()
/external/llvm-project/clang/test/FixIt/
Dfixit-pragma-attribute.cpp33 …ctions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_thread_local), function, v…
/external/llvm-project/clang/test/Misc/
Dpragma-attribute-strict-subjects.c18 …ctions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_thread_local), function, v…
/external/llvm-project/clang/test/Sema/
Dpragma-attribute-strict-subjects.c30 …ctions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_thread_local), function, v…
/external/llvm-project/clang/test/Parser/
Dpragma-attribute.cpp192 #pragma clang attribute push([[clang::uninitialized]], apply_to = variable(is_thread_local)) // exp…
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_executable.cc308 if (allocation.is_thread_local()) { in BufferForAllocation()
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml637 external is_thread_local : llvalue -> bool = "llvm_is_thread_local"
Dllvm.mli1429 (** [is_thread_local gv] returns [true] if the global variable [gv] is
1432 val is_thread_local : llvalue -> bool val
1439 (** [is_thread_local gv] returns the thread local mode of the global
/external/llvm-project/llvm/bindings/ocaml/llvm/
Dllvm.ml719 external is_thread_local : llvalue -> bool = "llvm_is_thread_local"
Dllvm.mli1480 (** [is_thread_local gv] returns [true] if the global variable [gv] is
1483 val is_thread_local : llvalue -> bool val
1490 (** [is_thread_local gv] returns the thread local mode of the global
/external/llvm/test/Bindings/OCaml/
Dcore.ml512 insist (is_thread_local g);
/external/llvm-project/llvm/test/Bindings/OCaml/
Dcore.ml566 insist (is_thread_local g);
/external/llvm-project/clang/docs/
DLanguageExtensions.rst3427 - ``variable(is_thread_local)``: Can be used to apply attributes to thread-local
3472 ``variable(unless(is_thread_local))`` is not.
/external/llvm-project/clang/include/clang/Basic/
DAttr.td446 AttrSubjectMatcherSubRule<"is_thread_local", [TLSVar]>,