-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Xilinx BRAM Macro and changes to kernel #63
base: master
Are you sure you want to change the base?
Conversation
This reverts commit e2e569a.
@@ -131,7 +131,7 @@ class HostApp { | |||
static const int DATA_WIDTH_BYTES = 64; | |||
static const int DATA_WIDTH_WORDS = DATA_WIDTH_BYTES / 4; // | |||
static const int DATA_WIDTH_BITS = DATA_WIDTH_BYTES * 8; // 512 bits | |||
static const int verbosity = 0; // 0: no debug messages; 10: all debug messages. | |||
static const int verbosity = 10; // 0: no debug messages; 10: all debug messages. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Back to 0.
@@ -58,7 +58,7 @@ | |||
|
|||
class Socket(): | |||
|
|||
VERBOSITY = 0 # 0-10 (quiet-loud) | |||
VERBOSITY = 10 # 0-10 (quiet-loud) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Back to 0.
@@ -792,7 +801,7 @@ project: $(USER_KERNEL_ADDED_FILE) | |||
|
|||
|
|||
$(DEST_DIR)/$(KERNEL_EXE).xclbin: $(XO_FILE) | |||
cd $(DEST_DIR); $(XOCC) -g --platform $(AWS_PLATFORM) --target $(BUILD_TARGET) --link -O quick --save-temps $(REPORT) --kernel $(KERNEL_NAME) ../../$(XO_FILE) $(KERNEL_LDCLFLAGS) $(KERNEL_FLAGS) $(KERNEL_ADDITIONAL_FLAGS) --output $(KERNEL_EXE).xclbin | |||
cd $(DEST_DIR); $(XOCC) -g --platform $(AWS_PLATFORM) --profile_kernel data:all:all:all --target $(BUILD_TARGET) --link --optimize 2 --save-temps $(REPORT) --kernel $(KERNEL_NAME) ../../$(XO_FILE) --output $(KERNEL_EXE).xclbin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this how we want to commit? Profiling works? What about the _FLAGS variables you removed?
# $(CC) $(SW_SRC) $(SW_CFLAGS) -Og -ggdb -DDEBUG $(SW_LFLAGS) -o $(DEST_DIR)/$(HOST_EXE)_debug | ||
endif | ||
else | ||
#hw and hw_emu target | ||
$(DEST_DIR)/$(HOST_EXE): $(HOST_SRC) $(HOST_HDRS) | ||
mkdir -p $(DEST_DIR) | ||
cp sdaccel.ini $(DEST_DIR) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here and several other places.
@@ -419,17 +419,21 @@ KERNEL_LDCLFLAGS=--nk $(KERNEL_NAME):1 \ | |||
--max_memory_ports $(KERNEL_NAME) \ | |||
--memory_port_data_width $(KERNEL_NAME):512 \ | |||
|
|||
KERNEL_ADDITIONAL_FLAGS= | |||
KERNEL_ADDITIONAL_FLAGS= --xp vivado_prop:run.my_rm_synth_1.{STEPS.SYNTH_DESIGN.ARGS.FLATTEN_HIERARCHY}={rebuilt} \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these all generally desired? Might be good to have some comments.
@@ -0,0 +1,6 @@ | |||
[Debug] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be in /framework?
// (Finally, now in TLV-land) | ||
|
||
// The hookup of kernel module SV interface signals to TLV signals following flow library conventions. | ||
\TLV tlv_wrapper(|_in, @_in, |_out, @_out, /_trans) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be included from somewhere else?
// This must be defined prior to any \TLV region, so \TLV macro syntax cannot be used - just raw m4. | ||
// $1: kernel name | ||
|
||
m4_define(['m4_kernel_module_def'], [' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be included from elsewhere?
GSoC final Pull Request