Home
last modified time | relevance | path

Searched refs:IsStateful (Results 1 – 14 of 14) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorFunctors.h99 static const bool IsStateful = false;
144 static const bool IsStateful = true;
224 static const bool IsStateful = false;
265 static const bool IsStateful = false;
306 static const bool IsStateful = false;
351 static const bool IsStateful = false;
375 static const bool IsStateful = false;
401 static const bool IsStateful = false;
426 static const bool IsStateful = false;
DTensorReductionCuda.h348 static const bool HasOptimizedImplementation = !Op::IsStateful &&
353 static const bool HasOptimizedImplementation = !Op::IsStateful &&
638 static const bool HasOptimizedImplementation = !Op::IsStateful &&
643 static const bool HasOptimizedImplementation = !Op::IsStateful &&
700 static const bool HasOptimizedImplementation = !Op::IsStateful &&
DTensorReduction.h245 static const bool HasOptimizedImplementation = !Op::IsStateful;
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h202 bool IsStateful(const NodeDef node, const OpRegistryInterface* op_registry);
203 bool IsStateful(const NodeDef node); // use OpRegistry::Global()
Dop_types.cc604 bool IsStateful(const NodeDef node, const OpRegistryInterface* op_registry) { in IsStateful() function
616 bool IsStateful(const NodeDef node) { in IsStateful() function
617 return IsStateful(node, OpRegistry::Global()); in IsStateful()
Dgrappler_item.cc123 if (IsStateful(node, &fn_library) || IsDataset(node)) { in NodesToPreserve()
/external/tensorflow/tensorflow/core/framework/
Dop_segment.cc106 return lib->IsStateful(node_op) && in ShouldOwnKernel()
Dfunction.h659 virtual bool IsStateful(const string& function_name) = 0;
/external/tensorflow/tensorflow/core/kernels/
Deigen_pooling.h283 static const bool IsStateful = true; member
379 IsStateful = true,
389 IsStateful = true,
/external/tensorflow/tensorflow/core/kernels/data/
Ddataset_utils.cc41 if (ctx->function_library()->IsStateful(func.name())) { in ComputeShortCircuitIndices()
/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc190 bool IsStateful(const string& function_name) override;
261 bool FunctionLibraryRuntimeOverlay::IsStateful(const string& function_name) { in IsStateful() function in tensorflow::FunctionLibraryRuntimeOverlay
336 bool IsStateful(const string& function) override;
1159 bool FunctionLibraryRuntimeImpl::IsStateful(const string& func) { in IsStateful() function in tensorflow::FunctionLibraryRuntimeImpl
Dfunction_test.cc370 TEST_F(FunctionLibraryRuntimeTest, IsStateful) { in TEST_F() argument
372 EXPECT_TRUE(flr0_->IsStateful("Variable")); in TEST_F()
373 EXPECT_TRUE(flr0_->IsStateful("VariableV2")); in TEST_F()
374 EXPECT_FALSE(flr0_->IsStateful("Matmul")); in TEST_F()
/external/tensorflow/tensorflow/c/
Dc_api_experimental_test.cc168 TEST(CAPI_EXPERIMENTAL, IsStateful) { in TEST() argument
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dfunction_optimizer.cc1426 IsStateful(func_body_node, &ctx.function_library()); in CheckThatSideEffectsWillExecute()