* @brief Represents a buffer of values on the GPU. */
| 36 | * @brief Represents a buffer of values on the GPU. |
| 37 | */ |
| 38 | struct Array { |
| 39 | WGPUBuffer buffer; |
| 40 | WGPUBufferUsageFlags usage; |
| 41 | size_t size; // in bytes |
| 42 | }; |
| 43 | |
| 44 | /** |
| 45 | * @brief Represents the shape of a tensor. |
nothing calls this directly
no outgoing calls
no test coverage detected