Caffe2 - C++ API
A deep learning, cross platform ML framework
fc_inference.h
1 #pragma once
2 #include "caffe2/core/context.h"
3 #include "caffe2/core/operator.h"
4 #include "caffe2/utils/conversions.h"
5 #include "caffe2/utils/math.h"
6 
7 namespace caffe2 {
8 std::vector<TensorShape> FCShapeInference(
9  const OperatorDef& def,
10  const vector<TensorShape>& in,
11  bool pretransposed_weight);
12 
13 OpSchema::Cost CostInferenceForFC(
14  const OperatorDef& def,
15  const vector<TensorShape>& in,
16  bool pretransposed_weight = false);
17 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13