/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_LITE_DELEGATES_GPU_METAL_COMPUTE_TASK_H_ #define TENSORFLOW_LITE_DELEGATES_GPU_METAL_COMPUTE_TASK_H_ #import #include #include #include #include #include "tensorflow/lite/delegates/gpu/common/precision.h" #include "tensorflow/lite/delegates/gpu/common/shape.h" #include "tensorflow/lite/delegates/gpu/common/status.h" #include "tensorflow/lite/delegates/gpu/common/task/gpu_operation.h" #include "tensorflow/lite/delegates/gpu/common/task/tuning_type.h" #include "tensorflow/lite/delegates/gpu/metal/common.h" #include "tensorflow/lite/delegates/gpu/metal/metal_arguments.h" #include "tensorflow/lite/delegates/gpu/metal/metal_device.h" #include "tensorflow/lite/delegates/gpu/metal/metal_spatial_tensor.h" namespace tflite { namespace gpu { namespace metal { class ComputeTask { public: ComputeTask() = default; // Move only ComputeTask(ComputeTask&& args) = default; ComputeTask& operator=(ComputeTask&& args) = default; ComputeTask(const ComputeTask&) = delete; ComputeTask& operator=(const ComputeTask&) = delete; void Init(std::unique_ptr&& operation); const OperationDef& GetDefinition() const; bool IsLinkable() const; absl::Status AddTask(ComputeTask* task); absl::Status Compile(MetalDevice* device); // should be called after changes of inputs/outputs. absl::Status UpdateParams(); void Encode(id encoder); void SetSrcTensor(MetalSpatialTensor* tensor, int index); void SetDstTensor(MetalSpatialTensor* tensor, int index); absl::Status Tune(TuningType tuning_type, MetalDevice* device); private: absl::Status CompileProgram(MetalDevice* device, CalculationsPrecision precision, const std::string& kernel_code); std::unique_ptr operation_; id program_; MetalArguments metal_args_; }; } // namespace metal } // namespace gpu } // namespace tflite #endif // TENSORFLOW_LITE_DELEGATES_GPU_METAL_COMPUTE_TASK_H_