/* 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; ~ComputeTask(); // Move only ComputeTask(ComputeTask&& task); ComputeTask& operator=(ComputeTask&& task); ComputeTask(const ComputeTask&) = delete; ComputeTask& operator=(const ComputeTask&) = delete; void Init(std::unique_ptr&& operation); const OperationDef& GetDefinition() const; const GPUOperation& GetGpuOperation() const { return *operation_; } absl::Status Compile(MetalDevice* device); // should be called after changes of inputs/outputs. absl::Status UpdateParams(); void Encode(id encoder); API_AVAILABLE(ios(13.0), macos(11.00), tvos(13.0)) void EncodeToICB(id icb_command); API_AVAILABLE(ios(11.0), macos(10.13), tvos(11.0)) void AddResourcesToEncoder(id encoder) const; void Update(); void SetSrcTensor(MetalSpatialTensor* tensor, int index); void SetDstTensor(MetalSpatialTensor* tensor, int index); absl::Status Tune(TuningType tuning_type, MetalDevice* device); int3 GetWorkGroupSize() const { return operation_->work_group_size_; } void SetWorkGroupSize(const int3& work_group_size); const std::string& GetCode() const { return operation_->code_; } const std::map& GetDefines() const { return defines_; } absl::Status Init(MetalDevice* device, const std::string& code, const std::map& defines); absl::Status RestoreDeserialized(MetalDevice* device); private: absl::Status CompileProgram( MetalDevice* device, const std::string& code, const std::map& defines); void Release(); std::unique_ptr operation_; id program_ = nullptr; MetalArguments metal_args_; bool use_arguments_buffer_ = false; // optional bool need_icb_support_ = false; // optional id arguments_encoder_ = nullptr; id arg_buffer_ = nullptr; // for serialization std::map defines_; }; } // namespace metal } // namespace gpu } // namespace tflite #endif // TENSORFLOW_LITE_DELEGATES_GPU_METAL_COMPUTE_TASK_H_