User bf3dbc99cf
24-01-2014 08:22:56
Dear ChemAxon,
I am using JChem Cartridge ver 6.1.6 on Oracle11gR2, CentOS 64bit, 6-Core CPUs, 64GB Memory.
When I insert structures into database using JCMan, I see that the cartridge uses almost 600% CPUs. (6-core)
But when I try to calculate properties of thousands compound in the database, I see the cartridge uses only 100% CPUs, 50% for Oracle and 50% for Java.
How can I make full use of the 6 CPUs?
Regards,
Chong Hak Chae,
select compound.cd_id,
jc_evaluate( cd_structure, 'logp()' ) logp
, jc_evaluate( cd_structure, 'logd("7.4")' ) logd
, jc_evaluate( cd_structure, 'pka("acidic", "1")' ) pka
, jc_evaluate( cd_structure, 'pka("basic", "1")' ) pkb
, jc_evaluate( cd_structure, 'donorCount()' ) hbd
, jc_evaluate( cd_structure, 'acceptorCount()' ) hba
, jc_evaluate( cd_structure, 'psa()' ) psa
, jc_evaluate( cd_structure, 'rotatableBondCount()' ) rotb
, jc_evaluate( cd_structure, 'ringCount()' ) rings
, jc_evaluate( cd_structure, 'fusedAromaticRingCount()' ) farings
, jc_evaluate( cd_structure, 'refractivity()' ) refr
from compound
where cd_id between 1 and 100000