---
title: memory_env.h
description: "```"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/API/ascendtb/ascendtb_0064.html
sourcePath: /source/zh/canncommercial/900/API/ascendtb/ascendtb_0064.html
indexId: 6ebda13a873859c20e584527d53d62152fcb9bb0fc1b9ed553ac9e91211758c361
---
# memory_env.h

```
#ifndef MEMORY_ENV_H
#define MEMORY_ENV_H

#include <iostream>

struct MemoryBlock {
    int64_t blockId;          // 内存块索引
    size_t blockSize;         // 内存块大小
    void *address = nullptr;  // 物理内存地址
};

#endif
```
