Please take a look at the picture.
-report suggests that 8 cores in the tile[1] are used;
However my Task Viewer shows only 2-3 cores used, which is also what parallel statement suggest.
So, that I guess means some of the tasks are placed on multiple cores; which I want to see.
How do I see them?
For tile 1 for example, I only have:
Code: Select all
// Ethernet App Tasks
on tile[1]: rgmii_ethernet_mac(i_eth_rx, NUM_ETH_CLIENTS, i_eth_tx, NUM_ETH_CLIENTS,
null, null,
c_rgmii_cfg, rgmii_ports,
ETHERNET_DISABLE_SHAPER);
on tile[1].core[0]: rgmii_ethernet_mac_config(i_eth_cfg, NUM_CFG_CLIENTS, c_rgmii_cfg);
on tile[1].core[0]: ar8035_phy_driver(i_smi, i_eth_cfg[CFG_TO_PHY_DRIVER]);
on tile[1]: smi(i_smi, p_smi_mdio, p_smi_mdc);
Code: Select all
// Ethernet App Tasks
on tile[1]: rgmii_ethernet_mac(i_eth_rx, NUM_ETH_CLIENTS, i_eth_tx, NUM_ETH_CLIENTS,
null, null,
c_rgmii_cfg, rgmii_ports,
ETHERNET_DISABLE_SHAPER);
on tile[1].core[0]: rgmii_ethernet_mac_config(i_eth_cfg, NUM_CFG_CLIENTS, c_rgmii_cfg);
on tile[1].core[0]: ar8035_phy_driver(i_smi, i_eth_cfg[CFG_TO_PHY_DRIVER]);
on tile[1]: smi(i_smi, p_smi_mdio, p_smi_mdc);
on tile[0]: xtcp(c_xtcp,
1,
null,
i_eth_cfg[0],
i_eth_rx[0],
i_eth_tx[0],
null,
ETHERNET_SMI_PHY_ADDRESS,
null,
otp_ports,
ipconfig);
on tile[0]: Task_EthernetAppTCPServer(c_xtcp[0]);