-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RFSoC4x2 Support and make PIP installable (#13)
* RFSoC4x2 Support Added * Notebooks are now pip installable * Tarballs are used for releases
- Loading branch information
1 parent
bda9b20
commit 060d96e
Showing
16 changed files
with
1,972 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
# Copyright (C) 2021 Xilinx, Inc | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
all: wheel | ||
all: rfsoc2x2 zcu111 rfsoc4x2 ultra96 tarball | ||
|
||
wheel: | ||
python3 setup.py bdist_wheel | ||
rfsoc2x2: | ||
$(MAKE) -C boards/RFSoC2x2/ | ||
|
||
zcu111: | ||
cd boards/ZCU111 && $(MAKE) | ||
|
||
ultra96: | ||
cd boards/Ultra96 && $(MAKE) | ||
$(MAKE) -C boards/ZCU111/ | ||
|
||
rfsoc2x2: | ||
cd boards/RFSoC2x2 && $(MAKE) | ||
rfsoc4x2: | ||
$(MAKE) -C boards/RFSoC4x2/ | ||
|
||
clean_zcu111: | ||
cd boards/ZCU111 && $(MAKE) clean | ||
ultra96: | ||
$(MAKE) -C boards/Ultra96/ | ||
|
||
clean_ultra96: | ||
cd boards/Ultra96 && $(MAKE) clean | ||
|
||
clean_rfsoc2x2: | ||
cd boards/RFSoC2x2 && $(MAKE) clean | ||
tarball: | ||
tar -czvf dsp_pynq.tar.gz . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.