Skip to content

Commit

Permalink
update test binary name in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
RustingSword committed Dec 9, 2021
1 parent d31ef7b commit a7ff2d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Only support `scalar`, `histogram`, `image`, `audio` `text` and `projector` at t

```bash
> mkdir build && cd build && cmake .. && cmake --build . -j
> cd .. && mkdir demo && ./test
> cd .. && mkdir demo && ./tensorboard_logger_test
> tensorboard --logdir . # try adding --load_fast=false if you don't see projector tab
```

Expand Down
2 changes: 1 addition & 1 deletion tests/test_tensorboard_logger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

using namespace std;

string read_binary_file(const string filename) {
string read_binary_file(const string& filename) {
ostringstream ss;
ifstream fin(filename, ios::binary);
if (!fin) {
Expand Down

0 comments on commit a7ff2d9

Please sign in to comment.