1 package com.android.nn.benchmark.core.sl; 2 3 import android.content.Context; 4 5 public class MediaTekSupportLibraryDriverHandler extends SupportLibraryDriverHandler { 6 @Override prepareDriver(Context context, String nnSupportLibFilePath)7 public void prepareDriver(Context context, String nnSupportLibFilePath) { 8 // MediaTek SL driver has no specific preparation needed 9 } 10 } 11