-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathaie2.py
92 lines (74 loc) · 3.05 KB
/
aie2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# vector_vector_add/aie2.py -*- Python -*-
#
# This file is licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# (c) Copyright 2024 Advanced Micro Devices, Inc. or its affiliates
import sys
from aie.dialects.aie import *
from aie.dialects.aiex import *
from aie.dialects.scf import *
from aie.extras.context import mlir_mod_ctx
from aie.extras.dialects.ext import memref, arith
import sys
def my_vector_add():
N = 256
n = 16
N_div_n = N // n
buffer_depth = 2
if len(sys.argv) != 3:
raise ValueError("[ERROR] Need 2 command line arguments (Device name, Col)")
if sys.argv[1] == "npu":
dev = AIEDevice.npu1_1col
elif sys.argv[1] == "xcvc1902":
dev = AIEDevice.xcvc1902
else:
raise ValueError("[ERROR] Device name {} is unknown".format(sys.argv[1]))
@device(dev)
def device_body():
memRef_ty = T.memref(n, T.i32())
# AIE Core Function declarations
# Tile declarations
ShimTile = tile(int(sys.argv[2]), 0)
ComputeTile2 = tile(int(sys.argv[2]), 2)
# AIE-array data movement with object fifos
of_in1 = object_fifo("in1", ShimTile, ComputeTile2, buffer_depth, memRef_ty)
of_in2 = object_fifo("in2", ShimTile, ComputeTile2, buffer_depth, memRef_ty)
of_out = object_fifo("out", ComputeTile2, ShimTile, buffer_depth, memRef_ty)
# Set up compute tiles
# Compute tile 2
@core(ComputeTile2)
def core_body():
# Effective while(1)
for _ in for_(sys.maxsize):
# Number of sub-vector "tile" iterations
for _ in for_(N_div_n):
elem_in1 = of_in1.acquire(ObjectFifoPort.Consume, 1)
elem_in2 = of_in2.acquire(ObjectFifoPort.Consume, 1)
elem_out = of_out.acquire(ObjectFifoPort.Produce, 1)
for i in for_(n):
v0 = memref.load(elem_in1, [i])
v1 = memref.load(elem_in2, [i])
v2 = arith.remsi(v0, v1)
memref.store(v2, elem_out, [i])
yield_([])
of_in1.release(ObjectFifoPort.Consume, 1)
of_in2.release(ObjectFifoPort.Consume, 1)
of_out.release(ObjectFifoPort.Produce, 1)
yield_([])
yield_([])
# To/from AIE-array data movement
tensor_ty = T.memref(N, T.i32())
@FuncOp.from_py_func(tensor_ty, tensor_ty, tensor_ty)
def sequence(A, B, C):
npu_dma_memcpy_nd(metadata="out", bd_id=0, mem=C, sizes=[1, 1, 1, N])
npu_dma_memcpy_nd(metadata="in1", bd_id=1, mem=A, sizes=[1, 1, 1, N])
npu_dma_memcpy_nd(metadata="in2", bd_id=2, mem=B, sizes=[1, 1, 1, N])
with mlir_mod_ctx() as ctx:
my_vector_add()
res = ctx.module.operation.verify()
if res == True:
print(ctx.module)
else:
print(res)