gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
hsaatc.f90 File Reference

Fortran 77 compatible interface for gtool_history HistoryAddAttr (character) . More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsaatc (vname, atname, value)

Detailed Description

Fortran 77 compatible interface for gtool_history HistoryAddAttr (character)

.

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsaatc.f90.

Function/Subroutine Documentation

◆ hsaatc()

subroutine hsaatc ( character(len = *), intent(in) vname,
character(len = *), intent(in) atname,
character(len = *), intent(in) value )

Add an attribute to a history or variable.

If VNAME is empty, the attribute is treated as a global attribute of the history.

Definition at line 27 of file hsaatc.f90.

28 !
30 character(len = *), intent(in):: vname ! 変数名
31 character(len = *), intent(in):: atname ! 属性名
32 character(len = *), intent(in):: value ! 変数
33
34 call historyaddattr(vname, atname, value)
35