Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
pskiran1 committed Jul 19, 2024
1 parent fb9bd83 commit fb8e98c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/response_cache_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ InferenceRequest::Input::Input(
const std::string& name, const inference::DataType datatype,
const int64_t* shape, const uint64_t dim_count)
: name_(name), datatype_(datatype),
original_shape_(shape, shape + dim_count), is_shape_tensor_(false),
data_(new MemoryReference), has_host_policy_specific_data_(false)
original_shape_(shape, shape + dim_count),
tensor_type_(TensorType::TENSOR), data_(new MemoryReference),
has_host_policy_specific_data_(false)
{
}

Expand Down

0 comments on commit fb8e98c

Please sign in to comment.