docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Interface IDependableMemoryResource

    An interface that provides Job system dependency fences for the memory resource.

    Namespace: Unity.Sentis
    Assembly: Unity.Sentis.dll
    Syntax
    public interface IDependableMemoryResource

    Properties

    fence

    A read fence job handle. You can use fence as a dependsOn argument when you schedule a job that reads data. The job will start when the tensor data is ready for read access.

    Declaration
    JobHandle fence { get; set; }
    Property Value
    Type Description
    JobHandle

    rawPtr

    The raw memory pointer for the resource.

    Declaration
    void* rawPtr { get; }
    Property Value
    Type Description
    void*

    reuse

    A write fence job handle. You can use reuse as a dependsOn argument when you schedule a job that reads data. The job will start when the tensor data is ready for write access.

    Declaration
    JobHandle reuse { get; set; }
    Property Value
    Type Description
    JobHandle
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)