blob: f68444b4ea2efd6ee36533a9e87d0896e0315a20 [file] [log] [blame]
// A simple program to test the py_pkg_cc_deps repository rule by building and
// linking against the Tensorflow library shipping in the Tensorflow Python
// package.
#include <tensorflow/core/util/util.h>
int main(int argc, char* argv[]) {
const char* ptr = "test";
const size_t n = 4;
tensorflow::PrintMemory(ptr, n);
return 0;
}