Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
docking
ocladock-fpga
Commits
98fdbac4
Commit
98fdbac4
authored
Sep 13, 2018
by
Leonardo Solis
Browse files
removed not needed part
parent
63b165f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
ofdock_taskpar_xl/Makefile
View file @
98fdbac4
...
...
@@ -169,16 +169,18 @@ swemu: kerswemu
-lfile
input/
$(PDB)
/derived/
$(PDB)
_ligand.pdbqt
\
-psize
$(PSIZE)
-nrun
$(NRUN)
-nev
$(NEV)
-ngen
$(NGEN)
-gfpop
1
@
echo
$(newline)
@
echo
"==========================================================================="
@
echo
"INFO: swemu log file is under:
\"
./docking.dlg
\"
"
@
echo
"===========================================================================
=========
"
@
echo
"INFO: swemu log file is under:
\"
./docking.dlg
\"
"
@
echo
$(newline)
@
echo
"INFO: profile and timeline trace report files are formatted for SDx GUI "
@
echo
"INFO: ... if reports not generated, verify that
\"
sdaccel.ini
\"
exists! "
@
echo
"INFO: profile and timeline trace report files are formatted for SDx GUI
"
@
echo
"INFO: ... if reports not generated, verify that
\"
sdaccel.ini
\"
exists!
"
@
echo
$(newline)
sdx_analyze profile sdaccel_profile_summary.csv
@
echo
$(newline)
sdx_analyze trace sdaccel_timeline_trace.csv
@
echo
"==========================================================================="
@
echo
$(newline)
@
echo
"INFO: (1) open sdx, (2) select
\"
File->Open File
\"
, (3) browse to *.xprf or *.wdb "
@
echo
"===================================================================================="
@
echo
$(newline)
...
...
ofdock_taskpar_xl/device/Krnl_GA.cl
View file @
98fdbac4
...
...
@@ -562,15 +562,17 @@ void Krnl_GA(
__attribute__((xcl_pipeline_loop))
LOOP_FOR_GA_IC_INNER_WRITE_GENOTYPE:
for (uchar pipe_cnt=0; pipe_cnt<DockConst_num_of_genes; pipe_cnt++) {
float tmp_ic;
#if defined(SINGLE_COPY_POP_ENE)
LocalPopCurr[pop_cnt][pipe_cnt & MASK_GENOTYPE]
= GlobPopCurr[pop_cnt*ACTUAL_GENOTYPE_LENGTH + pipe_cnt];
tmp_ic
= GlobPopCurr[pop_cnt*ACTUAL_GENOTYPE_LENGTH + pipe_cnt];
#else
LocalPopCurr[pop_cnt][pipe_cnt & MASK_GENOTYPE]
= GlobPopulationCurrent[pop_cnt*ACTUAL_GENOTYPE_LENGTH + pipe_cnt];
tmp_ic
= GlobPopulationCurrent[pop_cnt*ACTUAL_GENOTYPE_LENGTH + pipe_cnt];
#endif
/*
write_channel_altera(chan_IC2Conf_genotype, LocalPopCurr[pop_cnt][pipe_cnt & MASK_GENOTYPE]);
*/
write_pipe_block(chan_IC2Conf_genotype, &LocalPopCurr[pop_cnt][pipe_cnt & MASK_GENOTYPE]);
LocalPopCurr[pop_cnt][pipe_cnt & MASK_GENOTYPE] = tmp_ic;
write_pipe_block(chan_IC2Conf_genotype, &tmp_ic);
}
#if defined (DEBUG_KRNL_IC)
...
...
Leonardo Solis
@solis
mentioned in commit
2e4cbdbb
·
Jan 04, 2021
mentioned in commit
2e4cbdbb
mentioned in commit 2e4cbdbb8cc8089b6cf0dbc3625dc252e1eef7df
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment