File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 24
24
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
25
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
26
27
+ #include < atomic>
28
+ #include < chrono>
29
+ #include < memory>
30
+ #include < set>
31
+ #include < thread>
32
+ #include < unordered_map>
33
+
27
34
#include " tensorflow_backend_tf.h"
28
35
#include " tensorflow_utils.h"
29
36
#include " triton/backend/backend_common.h"
32
39
#include " triton/backend/backend_model_instance.h"
33
40
#include " triton/backend/backend_output_responder.h"
34
41
35
- #include < atomic>
36
- #include < chrono>
37
- #include < memory>
38
- #include < set>
39
- #include < thread>
40
- #include < unordered_map>
41
-
42
42
#ifdef TRITON_ENABLE_GPU
43
43
#include < cuda_runtime_api.h>
44
44
#endif // TRITON_ENABLE_GPU
@@ -1925,9 +1925,9 @@ ModelInstanceState::Create(
1925
1925
}
1926
1926
}
1927
1927
1928
- auto model_path =
1929
- JoinPath ( {model_state->RepositoryPath (),
1930
- std::to_string (model_state-> Version ()), cc_model_filename});
1928
+ auto model_path = JoinPath (
1929
+ {model_state->RepositoryPath (), std::to_string (model_state-> Version () ),
1930
+ cc_model_filename});
1931
1931
1932
1932
{
1933
1933
bool exists;
Original file line number Diff line number Diff line change 27
27
28
28
#include < stddef.h>
29
29
#include < stdint.h>
30
+
30
31
#include < map>
31
32
#include < vector>
32
33
You can’t perform that action at this time.
0 commit comments