Package com.upmem.dpu

Class DpuSymbol


  • public final class DpuSymbol
    extends java.lang.Object
    A symbol in a DPU program.

    Used in the copy methods of DpuSet and Dpu.

    See Also:
    DpuSet, Dpu
    • Constructor Summary

      Constructors 
      Constructor Description
      DpuSymbol​(int address, int size)
      Create an anonymous DPU symbol.
      DpuSymbol​(int address, int size, java.lang.String name)
      Create a DPU symbol.
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DpuSymbol

        public DpuSymbol​(int address,
                         int size,
                         java.lang.String name)
        Create a DPU symbol.
        Parameters:
        address - The memory address of the symbol.
        size - The memory size of the symbol.
        name - The name of the symbol.
      • DpuSymbol

        public DpuSymbol​(int address,
                         int size)
        Create an anonymous DPU symbol.
        Parameters:
        address - The memory address of the symbol.
        size - The memory size of the symbol.