1 #include "file_store_handler_op.h" 6 FileStoreHandlerCreate,
7 FileStoreHandlerCreateOp<CPUContext>);
9 OPERATOR_SCHEMA(FileStoreHandlerCreate)
13 Creates a unique_ptr<StoreHandler> that uses the filesystem as backing 14 store (typically a filesystem shared between many nodes, such as NFS). 15 This store handler is not built to be fast. Its recommended use is for 16 integration tests and prototypes where extra dependencies are 17 cumbersome. Use an ephemeral path to ensure multiple processes or runs 20 .Arg("path",
"base path used by the FileStoreHandler")
21 .Arg(
"prefix",
"prefix for all keys used by this store")
22 .Output(0,
"handler",
"unique_ptr<StoreHandler>");
24 NO_GRADIENT(FileStoreHandlerCreateOp);
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...