// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include namespace _winml { void LoadSpanFromDisjointBuffers( size_t num_buffers, std::function(size_t)> get_buffer, gsl::span& buffer_span ); void StoreSpanIntoDisjointBuffers( size_t num_buffers, std::function(size_t)> get_buffer, gsl::span& buffer_span ); } // namespace _winml