GetAddr

Description

Obtains the data address of a tensor.

Prototype

const void *GetAddr() const

void *GetAddr()

Parameters

None

Returns

Data address

Restrictions

None

Example

Tensor tensor{{{8, 3, 224, 224}, {16, 3, 224, 224}},       // shape                
              {ge::FORMAT_ND, ge::FORMAT_FRACTAL_NZ, {}},  // format                              
              kFollowing,                                  // placement                
              ge::DT_FLOAT16,                              //dt                
              nullptr};
auto addr = tensor.GetAddr(); // &tensor + 1