Skip to content

Accera v1.2 Reference

accera.Nest.create_plan([target])

Creates a plan using the default schedule for the nest.

Arguments

argument description type/default
target The target platform. Defaults to acc.Target.HOST Target

Returns

Plan

Examples

Create a plan for the host computer, using the default schedule for a nest:

plan = nest.create_plan()

Create a plan for an Intel Core 7th Generation, using the default schedule for a nest:

corei9 = acc.Target("Intel 7900X", num_threads=44)
plan = nest.create_plan(corei9)

Last update: 2023-04-17