Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

neilisaac / torch   python

Repository URL to install this package:

Version: 1.8.0 

/ include / caffe2 / core / plan_executor.h

#pragma once

#include <functional>

namespace caffe2 {

class Workspace;
class PlanDef;

typedef std::function<bool(int)> ShouldContinue;

bool RunPlanOnWorkspace(Workspace* ws, const PlanDef& plan, ShouldContinue);
}