-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c7d8a2
commit b5806ed
Showing
145 changed files
with
46,169 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
BasedOnStyle: Google | ||
NamespaceIndentation: All | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveMacros: 'true' | ||
AlignConsecutiveAssignments: 'true' | ||
AlignConsecutiveDeclarations: 'true' | ||
AlignOperands: 'true' | ||
AlignTrailingComments: 'true' | ||
AllowAllArgumentsOnNextLine: 'true' | ||
AllowAllConstructorInitializersOnNextLine: 'true' | ||
AllowAllParametersOfDeclarationOnNextLine: 'true' | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortLambdasOnASingleLine: All | ||
AlwaysBreakBeforeMultilineStrings: 'true' | ||
AlwaysBreakTemplateDeclarations: 'Yes' | ||
BinPackArguments: 'false' | ||
BinPackParameters: 'false' | ||
ColumnLimit: '100' | ||
ExperimentalAutoDetectBinPacking: 'false' | ||
IndentCaseLabels: 'false' | ||
IndentWidth: '4' | ||
PenaltyBreakBeforeFirstCallParameter: '0' | ||
TabWidth: '4' | ||
UseTab: ForContinuationAndIndentation | ||
|
||
... |
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 |
---|---|---|
@@ -0,0 +1,216 @@ | ||
# Ignore build output directory | ||
/build | ||
.cache/ | ||
|
||
|
||
# Ignore object files and dependent files | ||
.o | ||
.d | ||
|
||
#Ignore logs folder and log files | ||
/logs | ||
.log | ||
|
||
#Ignore lock files | ||
.lock | ||
|
||
.bin | ||
.pdi | ||
|
||
*/*/hls/ | ||
*/*/logs/ | ||
*/*/reports/ | ||
*.hlscompile_summary | ||
*.hlsrun_csim_summary | ||
*.hlsrun_package_summary | ||
|
||
validate_aie_pl | ||
*.jou | ||
profile_summary.html | ||
profile_summary.csv | ||
_v++_*/ | ||
.Xil/ | ||
*.ll | ||
*.exe | ||
emconfig.json | ||
xmltmp | ||
dltmp* | ||
runtime/ | ||
*.log | ||
xclbin/ | ||
lib/ | ||
*.orig | ||
*_BACKUP_* | ||
*_BASE_* | ||
*_LOCAL_* | ||
*_REMOTE_* | ||
*.swp | ||
log.* | ||
*.bin | ||
*.xclbin | ||
build* | ||
_x* | ||
|
||
*/vitis_c++ | ||
|
||
# gitignore template for Xilinx Vivado Design Suite | ||
# website: https://www.xilinx.com/support/download.html | ||
|
||
# [home] | ||
*.jou | ||
*.log | ||
*.debug | ||
*.str | ||
*.zip | ||
*.tmp | ||
*.rst | ||
*.os | ||
*.js | ||
*.pb | ||
*.dcp | ||
*.hwdef | ||
*.vds | ||
*.veo | ||
*.wdf | ||
*.vdi | ||
*.dmp | ||
*.rpx | ||
*.rpt | ||
*_stub.v | ||
*_stub.vhdl | ||
*_funcsim.v | ||
*_funcsim.vhdl | ||
.project | ||
|
||
# [dir] | ||
*/*.cache | ||
*/.metadata | ||
*/*.data | ||
*/*.ipdefs | ||
*/.Xil | ||
*/*.sdk | ||
*/*.ip_user_files | ||
|
||
### IP synth | ||
*_synth_* | ||
|
||
.jobs | ||
|
||
### project synth | ||
*/*.runs/synth*/*.xml | ||
*/*.runs/synth*/*.txt | ||
*/*.runs/synth*/*.sh | ||
*/*.runs/synth*/*.tcl | ||
*/*.runs/synth*/*.bat | ||
*/*.runs/synth*/*.xdc | ||
!*/*.runs/synth*/*utilization*.rpt | ||
|
||
*.runs/synth*/*.xml | ||
*.runs/synth*/*.txt | ||
*.runs/synth*/*.sh | ||
*.runs/synth*/*.tcl | ||
*.runs/synth*/*.bat | ||
*.runs/synth*/*.xdc | ||
!*.runs/synth*/*utilization*.rpt | ||
|
||
### project impl | ||
*/*.gen/ | ||
*/*.runs/impl*/*.xml | ||
*/*.runs/impl*/*.html | ||
*/*.runs/impl*/*.txt | ||
*/*.runs/impl*/*.sh | ||
*/*.runs/impl*/*.tcl | ||
*/*.runs/impl*/*.bat | ||
!*/*.runs/impl*/*utilization*.rpt | ||
|
||
*.runs/impl*/*.xml | ||
*.runs/impl*/*.html | ||
*.runs/impl*/*.txt | ||
*.runs/impl*/*.sh | ||
*.runs/impl*/*.tcl | ||
*.runs/impl*/*.bat | ||
!*.runs/impl*/*utilization*.rpt | ||
|
||
### block design | ||
*/*/bd/*/hdl | ||
*/*/*/bd/*/hdl | ||
|
||
*/*/bd/*/*.xdc | ||
*/*/*/bd/*/*.xdc | ||
|
||
*/*/bd/*/ip/*/*.xdc | ||
*/*/*/bd/*/ip/*/*.xdc | ||
|
||
*/*/bd/*/ip/*/*/ | ||
*/*/*/bd/*/ip/*/*/ | ||
|
||
*/*/bd/*/ip/*/*.vhd | ||
*/*/*/bd/*/ip/*/*.vhd | ||
|
||
*/*/bd/*/ip/*/*.xml | ||
*/*/*/bd/*/ip/*/*.xml | ||
|
||
*.vho | ||
*.html | ||
*/*/bd/*/ip/*/*.tcl | ||
*/*/*/bd/*/ip/*/*.tcl | ||
hw_handoff | ||
ipshared | ||
|
||
*.log | ||
*.jou | ||
*.rpt | ||
*.vdi | ||
|
||
## bitstream | ||
*.bit | ||
*.bin | ||
*.mcs | ||
*.svf | ||
*.image | ||
|
||
## netlist | ||
*.edf | ||
*.edif | ||
*.vn | ||
*.vm | ||
|
||
## SDF | ||
*.sdf | ||
|
||
## sim dump | ||
*.vcd | ||
*.saif | ||
*.tcf | ||
*.wdb | ||
|
||
## others | ||
unisims | ||
|
||
## C-files | ||
*.elf | ||
*.a | ||
*.sa | ||
*.so | ||
*.lib | ||
|
||
## dirs | ||
*/*.cache/ | ||
|
||
###### for Xilinx Vivado|ISE | ||
.Xil/ | ||
.cache/ | ||
fsm_encoding.os | ||
tab_*/ | ||
webtalk.* | ||
vivado_pid*.str | ||
hs_err_pid* | ||
xelab.* | ||
xsim.* | ||
xvlog.* | ||
*.cache | ||
*.backup.* | ||
*.debug | ||
|
||
## checkpoint files | ||
*.dcp |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
DefaultTarget=true | ||
ServiceManagerID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
TransportName=TCP | ||
AutoSetJtagFrequency=false | ||
PeerTypeId=LINUX_EMULATION | ||
UserName=Aryan | ||
Port=1440 | ||
Host=127.0.0.1 | ||
OSName=Windows 11 | ||
ID=LinuxEmulation | ||
AgentID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
Name=LinuxEmulation | ||
|
||
DefaultTarget=true | ||
ServiceManagerID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
TransportName=TCP | ||
AutoSetJtagFrequency=false | ||
PeerTypeId=XRT_SERVER | ||
UserName=Aryan | ||
Port=1222 | ||
Host=127.0.0.1 | ||
OSName=Windows 11 | ||
ID=XRTServer | ||
AgentID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
Name=XRTServer | ||
|
||
DefaultTarget=true | ||
ServiceManagerID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
TransportName=TCP | ||
AutoSetJtagFrequency=true | ||
PeerTypeId=HARDWARE_SERVER | ||
UserName=Aryan | ||
Port=3121 | ||
Host=127.0.0.1 | ||
OSName=Windows 11 | ||
ID=Local | ||
AgentID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
Name=Local | ||
|
||
DefaultTarget=true | ||
ServiceManagerID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
TransportName=TCP | ||
AutoSetJtagFrequency=false | ||
PeerTypeId=LINUX_TCF_AGENT | ||
UserName=Aryan | ||
Port=1534 | ||
Host=192.168.0.1 | ||
OSName=Windows 11 | ||
ID=Linux Agent | ||
AgentID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
Name=Linux Agent | ||
|
||
DefaultTarget=true | ||
ServiceManagerID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
TransportName=TCP | ||
AutoSetJtagFrequency=false | ||
PeerTypeId=QEMU_TCF_GDB_CLIENT | ||
UserName=Aryan | ||
Port=1138 | ||
Host=127.0.0.1 | ||
OSName=Windows 11 | ||
ID=QEMU | ||
AgentID=7a1e1629-4600-4df5-bfd6-183d5ffbe92a | ||
Name=QEMU | ||
|
Oops, something went wrong.