Example #1
0
        public bool UnloadAlgorithm(string algoId, ComputeDeviceInfo computeDeviceInfo, int port)
        {
            string result = utility.UnloadAlgorithm(algoId, computeDeviceInfo, port);

            if (result != null)
            {
                return(computeDeviceStateMap[computeDeviceInfo][port].ClearAlgorithm(algoId));
            }

            return(false);
        }
 public void UnloadAlgorithm(string algoId, ComputeDeviceInfo computeDeviceInfo, int port)
 {
     utility.UnloadAlgorithm(algoId, computeDeviceInfo, port);
 }