Skip to content

Commit

Permalink
disable weight cache to avoid smoke_FC_2D_FP16_2 fail
Browse files Browse the repository at this point in the history
  • Loading branch information
alvoron committed Oct 16, 2024
1 parent baf5510 commit fab5a4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static MemoryPtr prepareWeightMemory(const MemoryArgs &memory,
};

auto weightCache = context->getWeightsCache();
if (weightCache != nullptr) {
/*if (weightCache != nullptr) {
const auto& wgtDims = memory.at(ARG_WEI)->getStaticDims();
const auto N = wgtDims[0];
const auto K = wgtDims[1];
Expand All @@ -229,7 +229,7 @@ static MemoryPtr prepareWeightMemory(const MemoryArgs &memory,
std::to_string(reinterpret_cast<uint64_t>(memory.at(ARG_WEI)->getData()));
DEBUG_LOG("ACLFullyConnectedExecutor: findOrCreate, string_hash: ", string_hash);
return *weightCache->findOrCreate(string_hash, create);
}
}*/

DEBUG_LOG("ACLFullyConnectedExecutor: Weights cache is not available");
return create();
Expand Down

0 comments on commit fab5a4e

Please sign in to comment.