Test module for PAICORE 2.0
Project description
PAITest
📦 版本
🛠️ 使用生成
配置帧及对应测试输入帧,以实现硬件通路的简单测试,后续将芯片实际测试输出帧与预期结果进行对比即可。
⚠️ 由于配置帧/测试帧I型需要配合串口配置使用,因此目前仅采用配置/测试帧II型方案,且 CHIP_ADDR
与 CORE*_ADDR
均固定为 (0, 0)
。
-
实例化
PAITest
from paitest import paitest # Define the direction of test chip PAITestManager = paitest("EAST")
-
Get1GroupForNCoresWithNParams
,产生一组针对N
个核的配置-测试帧,每个核配置不同参数。可以指定单个需要屏蔽的核坐标groups = 10 # Generate 10 groups save_to_dir="./test" # Save frames into ./test directory # Generate configuration frames, testin & testout frames cf, ti, to = PAITestManager.Get1GroupForNCoresWithNParams(groups, save_dir=save_to_dir) # Mask a cord coordinate so that avoid generating the same coordinate. cf, ti, to = PAITestManager.Get1GroupForNCoresWithNParams(groups, save_dir=save_to_dir, masked_core_coord=(12, 16))
-
Get1GroupForNCoresWith1Param
,产生1组针对N
个核的配置-测试帧,每个核配置相同参数。可以指定单个需要屏蔽的核坐标# Same as Get1GroupForNCoresWithNParams cf, ti, to = PAITestManager.Get1GroupForNCoresWith1Param(10, save_dir="./test")
-
GetNGroupsFor1CoreWithNParams
,产生N
组针对1个核的配置-测试帧,每个核配置不同参数。可以指定单个需要屏蔽的核坐标# Same as Get1GroupForNCoresWithNParams cf, ti, to = PAITestManager.GetNGroupsFor1CoreWithNParams(1, save_dir="./test")
-
ReplaceCoreCoord
,替换单个或一组帧中的CORE_ADDR
为指定坐标。# Replaced core coordinate with (9, 9) replaced = PAITestManager.ReplaceCoreCoord(original_frames, (9, 9))
⚠️ 一组指一组完整的配置帧,包含3帧。对于测试输入帧,即为单帧。
-
SaveFrames
,保存帧数据至.bin
文件# Save into ./test/config.bin PAITestManager.SaveFrames("./test/config.bin", replaced)
🗓️ TODO
- 上板验证
- 参数检验
- 配置/测试帧III/IV型
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
paitest-0.0.11-py3-none-any.whl
(24.6 kB
view details)
File details
Details for the file paitest-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: paitest-0.0.11-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.9 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 068567a899e0d456596e5c71e1645c0d66f7fb55460470024ce9537e97263b27 |
|
MD5 | ff525821b3d0b6cea06435d04be69f9c |
|
BLAKE2b-256 | f8b325ec9c1b765e6fc2ba0dba4af03b3fe3fb735e431b3f97cd640a06e32a6b |