- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for PartialTensorShape (0.09 sec)
-
tensorflow/c/c_api.cc
} void TF_SetAttrShape(TF_OperationDescription* desc, const char* attr_name, const int64_t* dims, int num_dims) { PartialTensorShape shape; if (num_dims >= 0) { shape = PartialTensorShape(absl::Span<const int64_t>( reinterpret_cast<const int64_t*>(dims), num_dims)); } desc->node_builder.Attr(attr_name, shape); }
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue May 13 06:30:43 UTC 2025 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
string bytes1, bytes2; tensorflow::TensorShapeProto proto; const int64_t pts1[] = {2, 4, -1, 8}; tensorflow::PartialTensorShape(pts1).AsProto(&proto); proto.SerializeToString(&bytes1); const int64_t pts2[] = {1, 3, 5, 7}; tensorflow::PartialTensorShape(pts2).AsProto(&proto); proto.SerializeToString(&bytes2); std::unique_ptr<const void*[]> list_ptrs;
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0) -
RELEASE.md
* Adding TensorFlow-iOS CocoaPod for symmetry with tensorflow-android. * Introduces base implementations of ClusterResolvers. * Unify memory representations of TensorShape and PartialTensorShape. As a consequence, tensors now have a maximum of 254 dimensions, not 255. * Changed references to LIBXSMM to use version 1.8.1. * TensorFlow Debugger (tfdbg):
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (1)