获取请求在P节点上的block table下标。
std::vector<int64_t> GetSrcBlockTable() const;
无。
mindie_llm::InferRequestId runtimeReqId(0); std::shared_ptr<mindie_llm::InferRequest> runtimeRequest(runtimeReqId); std::vector<int64_t> srcBlockTable{0, 1, 2}; runtimeRequest->SetSrcBlockTable(srcBlockTable); auto blockTable = runtimeRequest->GetSrcBlockTable();
源block table。