13 lines
342 B
C++
13 lines
342 B
C++
// 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;
|
|
}
|