Caffe2 - C++ API
A deep learning, cross platform ML framework
Related Pages
Modules
Data Structures
Files
C++ API
Python API
GitHub
File List
Globals
caffe2
perfkernels
typed_axpy.h
1
#pragma once
2
3
namespace
caffe2
{
4
5
// Similar to Axpy that calculate y = a * x + y, but allowing x and y to be
6
// of different data types.
7
// It also provides a performance optimization hint (use_a) to see if a is going
8
// to be 1 or not.
9
template
<
typename
IN,
typename
OUT>
10
void
TypedAxpy(
int
N,
const
OUT a,
const
IN* x, OUT* y);
11
12
}
// namespace caffe2
caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition:
blob.h:13
Generated on Thu Mar 21 2019 13:06:20 for Caffe2 - C++ API by
1.8.11