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
2e4cbdbb
Commit
2e4cbdbb
authored
Sep 13, 2018
by
Leonardo Solis
Browse files
removed not needed part
Former-commit-id:
98fdbac4
parent
9e3606a4
Changes
2
Show whitespace changes
Inline
Side-by-side
ofdock_taskpar_xl/Makefile
View file @
2e4cbdbb
...
...
@@ -169,7 +169,7 @@ swemu: kerswemu
-lfile
input/
$(PDB)
/derived/
$(PDB)
_ligand.pdbqt
\
-psize
$(PSIZE)
-nrun
$(NRUN)
-nev
$(NEV)
-ngen
$(NGEN)
-gfpop
1
@
echo
$(newline)
@
echo
"==========================================================================="
@
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 "
...
...
@@ -178,7 +178,9 @@ swemu: kerswemu
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 @
2e4cbdbb
...
...
@@ -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)
...
...
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