Skip to content

Commit

Permalink
TFLite logs to stderr.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 190992629
  • Loading branch information
ebrevdo authored and tensorflower-gardener committed Mar 29, 2018
1 parent 4893898 commit 79e4a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/contrib/lite/nnapi/NeuralNetworksShim.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.

// helpers

#define NNAPI_LOG(format, ...) printf(format "\n", __VA_ARGS__);
#define NNAPI_LOG(format, ...) fprintf(stderr, format "\n", __VA_ARGS__);
#define LOAD_FUNCTION(name) \
static name##_fn fn = reinterpret_cast<name##_fn>(loadFunction(#name));
#define EXECUTE_FUNCTION(...) \
Expand Down

0 comments on commit 79e4a49

Please sign in to comment.