forked from pytorch/glow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added resnet50 example running on new Runtime. Fixed a bug where Host…
…Manager was always assigning runID = 0;
- Loading branch information
Showing
4 changed files
with
202 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
/** | ||
* Copyright (c) 2017-present, Facebook, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "glow/Base/Image.h" | ||
#include "glow/ExecutionEngine/ExecutionEngine.h" | ||
#include "glow/Graph/Graph.h" | ||
#include "glow/Importer/Caffe2ModelLoader.h" | ||
#include "glow/Runtime/HostManager/HostManager.h" | ||
#include "glow/Runtime/RuntimeTypes.h" | ||
|
||
#include "llvm/Support/CommandLine.h" | ||
#include "llvm/Support/FileSystem.h" | ||
|
||
#include <chrono> | ||
#include <future> | ||
|
||
using namespace glow; | ||
using namespace glow::runtime; | ||
|
||
namespace { | ||
llvm::cl::OptionCategory category("resnet-runtime Options"); | ||
llvm::cl::opt<std::string> | ||
inputDirectory(llvm::cl::desc("input directory for images, which must be " | ||
"png's with standard imagenet normalization"), | ||
llvm::cl::init("../tests/images/imagenet/"), | ||
llvm::cl::Positional, llvm::cl::cat(category)); | ||
llvm::cl::opt<unsigned> numDevices("numDevices", | ||
llvm::cl::desc("Number of Devices to use"), | ||
llvm::cl::init(5), llvm::cl::value_desc("N"), | ||
llvm::cl::cat(category)); | ||
llvm::cl::opt<unsigned> | ||
maxImages("maxImages", | ||
llvm::cl::desc("Maximum number of images to load and classify"), | ||
llvm::cl::init(1000), llvm::cl::value_desc("N"), | ||
llvm::cl::cat(category)); | ||
} // namespace | ||
|
||
/// Loads the model into /p module and returns the input and output | ||
/// Placeholders. Appending count to the function name. | ||
Placeholder *loadResnet50Model(TypeRef inputType, Module *module, | ||
unsigned int count) { | ||
Function *F = module->createFunction("resnet50" + std::to_string(count)); | ||
|
||
llvm::outs() << "Loading resnet50 model.\n"; | ||
|
||
const char inputName[] = "gpu_0/data"; | ||
Caffe2ModelLoader loader("resnet50/predict_net.pb", "resnet50/init_net.pb", | ||
{inputName}, {inputType}, *F); | ||
Placeholder *input = | ||
llvm::cast<Placeholder>(cantFail(loader.getNodeValueByName(inputName))); | ||
return input; | ||
} | ||
|
||
/// Starts a run of resnet50 on the given image. The image must be already | ||
/// loaded into the input placeholder in /p ctx. | ||
/// If, at the end of the run the number of \p returned results is equal to | ||
/// maxImages, the \p finished promise is set. | ||
void dispatchClassify(unsigned int id, HostManager *hostManager, | ||
std::string path, std::unique_ptr<Context> ctx, | ||
std::atomic<size_t> &returned, | ||
std::promise<void> &finished) { | ||
auto runid = hostManager->runNetwork( | ||
"resnet50" + std::to_string(id), std::move(ctx), | ||
[id, path, &returned, &finished](RunIdentifierTy, ResultCode r, | ||
std::unique_ptr<Context> ctx) { | ||
if (r == ResultCode::Cancelled) { | ||
llvm::outs() << "(" << id << ") " | ||
<< "Too Many Active Requests.\n"; | ||
} else { | ||
size_t maxIdx = | ||
ctx->get(ctx->getPlaceholderByName("save_gpu_0_softmax")) | ||
->getHandle() | ||
.minMaxArg() | ||
.second; | ||
llvm::outs() << "(" << id << ") " << path << ": " << maxIdx << "\n"; | ||
} | ||
if (++returned == maxImages) { | ||
finished.set_value(); | ||
} | ||
}); | ||
llvm::outs() << "Started run ID: " << runid << "\n"; | ||
} | ||
|
||
/// Run ResNet concurrently on the number CPU Devices provided by the user. | ||
int main(int argc, char **argv) { | ||
llvm::cl::ParseCommandLineOptions( | ||
argc, argv, "Run ResNet concurrently on a fixed number of CPU devices"); | ||
|
||
llvm::outs() << "Initializing " << numDevices | ||
<< " CPU Devices on HostManager.\n"; | ||
|
||
std::vector<DeviceConfig> configs; | ||
for (unsigned int i = 0; i < numDevices; ++i) { | ||
auto config = DeviceConfig(); | ||
config.deviceName = "CPU" + std::to_string(i); | ||
config.backendKind = BackendKind::CPU; | ||
configs.push_back(config); | ||
} | ||
|
||
std::unique_ptr<HostManager> hostManager = | ||
llvm::make_unique<HostManager>(configs); | ||
|
||
// Load model, create a context, and add to HostManager. | ||
|
||
Placeholder *input; | ||
std::vector<Placeholder *> inputs; | ||
std::vector<std::unique_ptr<Module>> modules; | ||
for (unsigned int i = 0; i < numDevices; i++) { | ||
std::unique_ptr<Module> module = llvm::make_unique<Module>(); | ||
TypeRef inputType = module->uniqueType(ElemKind::FloatTy, {1, 3, 224, 224}); | ||
input = loadResnet50Model(inputType, module.get(), i); | ||
inputs.push_back(input); | ||
llvm::outs() << "Adding to HostManager\n"; | ||
auto result = hostManager->addNetwork(module.get()); | ||
if (result != ResultCode::Ready) { | ||
llvm::outs() << "failed to add\n"; | ||
return -1; | ||
} | ||
modules.push_back(std::move(module)); | ||
} | ||
|
||
llvm::outs() << "Loading files from " << inputDirectory << "\n"; | ||
std::error_code code; | ||
llvm::sys::fs::directory_iterator dirIt(inputDirectory, code); | ||
if (code.value()) { | ||
llvm::errs() << "Couldn't read from directory: " << inputDirectory | ||
<< " - code" << code.value() << "\n"; | ||
exit(code.value()); | ||
} | ||
|
||
std::promise<void> finished; | ||
|
||
size_t started = 0; | ||
std::atomic<size_t> returned{0}; | ||
|
||
auto inputType = modules[0]->uniqueType(ElemKind::FloatTy, {1, 3, 224, 224}); | ||
|
||
// Run up to maxImages classifications. | ||
unsigned int currDevice{0}; | ||
while (started++ < maxImages) { | ||
if (code.value() != 0 || dirIt == llvm::sys::fs::directory_iterator()) { | ||
started--; | ||
returned += maxImages - started; | ||
|
||
if (returned == maxImages) { | ||
finished.set_value(); | ||
} | ||
break; | ||
} | ||
int index = currDevice % numDevices; | ||
std::string path = dirIt->path(); | ||
|
||
auto image = | ||
readPngImageAndPreprocess(path, ImageNormalizationMode::k0to1, | ||
ImageChannelOrder::BGR, ImageLayout::NCHW, | ||
/* useImagenetNormalization */ true); | ||
std::unique_ptr<Context> ctx = llvm::make_unique<Context>(); | ||
|
||
ctx->allocate(modules[index]->getPlaceholders()); | ||
Tensor batch = image.getUnowned(inputType->dims()); | ||
updateInputPlaceholders(*ctx, {inputs[index]}, {&batch}); | ||
|
||
dispatchClassify(index, hostManager.get(), std::move(path), std::move(ctx), | ||
returned, finished); | ||
|
||
dirIt.increment(code); | ||
currDevice++; | ||
} | ||
|
||
finished.get_future().wait(); | ||
|
||
llvm::outs() << "Finished classifying " << started << " images.\n"; | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,4 +143,4 @@ TEST_F(HostManagerTest, runNetwork) { | |
// for (auto &t : threads) { | ||
// t.join(); | ||
// } | ||
// } | ||
// } |