Merge branch 'tensor_core' into kernels

This commit is contained in:
Hansung Kim
2024-06-07 18:27:02 -07:00
20 changed files with 2131 additions and 17 deletions

View File

@@ -10,6 +10,7 @@ ENTRY(_start)
MEMORY {
DRAM0 (rwx): ORIGIN = 0x80000000, LENGTH = 512M
DRAMARG (rwx): ORIGIN = 0x9fff0000, LENGTH = 8K
DRAM1 (rwx): ORIGIN = 0xa0000000, LENGTH = 16M
DRAM2 (rwx): ORIGIN = 0xa1000000, LENGTH = 16M
}
@@ -275,6 +276,10 @@ SECTIONS
.gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
/DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
.args : {
*(.args)
. += 8K;
}> DRAMARG
.operand.a : {
*(.operand.a)
. += 32K;