Skip to content

Commit

Permalink
Auto-format (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyastremsky authored Jun 22, 2023
1 parent b9c92c4 commit c56754b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/tensorflow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include <atomic>
#include <chrono>
#include <memory>
#include <set>
#include <thread>
#include <unordered_map>

#include "tensorflow_backend_tf.h"
#include "tensorflow_utils.h"
#include "triton/backend/backend_common.h"
Expand All @@ -32,13 +39,6 @@
#include "triton/backend/backend_model_instance.h"
#include "triton/backend/backend_output_responder.h"

#include <atomic>
#include <chrono>
#include <memory>
#include <set>
#include <thread>
#include <unordered_map>

#ifdef TRITON_ENABLE_GPU
#include <cuda_runtime_api.h>
#endif // TRITON_ENABLE_GPU
Expand Down Expand Up @@ -1925,9 +1925,9 @@ ModelInstanceState::Create(
}
}

auto model_path =
JoinPath({model_state->RepositoryPath(),
std::to_string(model_state->Version()), cc_model_filename});
auto model_path = JoinPath(
{model_state->RepositoryPath(), std::to_string(model_state->Version()),
cc_model_filename});

{
bool exists;
Expand Down
1 change: 1 addition & 0 deletions src/tensorflow_backend_tf.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <stddef.h>
#include <stdint.h>

#include <map>
#include <vector>

Expand Down

0 comments on commit c56754b

Please sign in to comment.