Home
last modified time | relevance | path

Searched refs:attr_buf (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/c/
Dc_api_function_test.cc382 TF_Buffer* attr_buf = TF_NewBuffer(); in GetAttr() local
383 TF_FunctionGetAttrValueProto(func_, attr_name, attr_buf, s_); in GetAttr()
384 ASSERT_TRUE(out_attr->ParseFromArray(attr_buf->data, attr_buf->length)); in GetAttr()
385 TF_DeleteBuffer(attr_buf); in GetAttr()
1516 TF_Buffer* attr_buf = TF_NewBuffer(); in TEST_F() local
1517 TF_FunctionGetAttrValueProto(func_, "foo_attr", attr_buf, s_); in TEST_F()
1521 TF_DeleteBuffer(attr_buf); in TEST_F()
/external/tensorflow/tensorflow/python/framework/
Dops.py2283 def _set_attr_with_buf(self, attr_name, attr_buf): argument
2287 attr_buf)