start_time

Applicability

Product

Supported

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas 200I/500 A2 inference product

x

Atlas inference product

x

Atlas training product

x

Function Description

Reads and sets the start time of FlowInfo in attribute mode.

Prototype

1
2
3
4
@property
def start_time(self)
@start_time.setter
def start_time(self, new_value)

Parameters

Parameter

Data Type

Description

new_value

int

Start time of the FlowInfo to be set.

Returns

Attribute of start_time

Examples

1
2
3
4
5
import dataflow as df
graph = df.FlowGraph(...)
flowinfo = FlowInfo(...)
flowinfo.start_time = 100
print(flowinfo.start_time)

Constraints

None