This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Run OpenCL sample in Android

Hello

I want to run OpenCL sample apps on Mali T-628 gpu in Android platform.

i hv downloaded Mali OpenCL SDK.

My host system is Ubuntu 12.04

I saw entire development guides but couldnt understand.Any instructions on how to go about it?

Thks

Parents
  • With production devices, even with root capabilities, you cannot push directly to the system partition - even if you remount it as rw.

    For these devices with this security feature, you have to push it to the sdcard first, then adb shell and copy the files from the sdcard to your destination (note: mv will not work due to cross-filesystem limitations, a cp will work)

    However you should have an eng build running on a devboard such as the XU3, so pushing directly to a rw system partition is possible, but only after you first run the following commands:

    adb root

    adb remount

    It sounds like you are having a lot of basic problems. A lot of the issues you are now raising are not related to Mali, or indeed ARM.

    Please google for the answer to generic problems before posting here.

    We cannot and will not do the work for you.

    Thank you for understanding, and we are more than happy to help with any Mali and/or ARM specific issues or questions you may have.

    Kind Regards,

    Michael McGeagh

Reply
  • With production devices, even with root capabilities, you cannot push directly to the system partition - even if you remount it as rw.

    For these devices with this security feature, you have to push it to the sdcard first, then adb shell and copy the files from the sdcard to your destination (note: mv will not work due to cross-filesystem limitations, a cp will work)

    However you should have an eng build running on a devboard such as the XU3, so pushing directly to a rw system partition is possible, but only after you first run the following commands:

    adb root

    adb remount

    It sounds like you are having a lot of basic problems. A lot of the issues you are now raising are not related to Mali, or indeed ARM.

    Please google for the answer to generic problems before posting here.

    We cannot and will not do the work for you.

    Thank you for understanding, and we are more than happy to help with any Mali and/or ARM specific issues or questions you may have.

    Kind Regards,

    Michael McGeagh

Children