Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateConvertLaunchFuncToTFCallPass (1.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/convert_launch_func_to_tf_call.cc

        launch.replaceAllUsesWith(call_op);
        launch.erase();
      });
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateConvertLaunchFuncToTFCallPass() {
      return std::make_unique<ConvertLaunchFuncToTFCallPass>();
    }
    
    }  // namespace TFDevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 21:08:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateLaunchOutliningPass();
    
    // Creates a pass that converts tf_device::LaunchFuncOp into
    // TF::PartitionedCallOp.
    std::unique_ptr<OperationPass<ModuleOp>> CreateConvertLaunchFuncToTFCallPass();
    
    // A pass that decomposes composite resource operations into primitive ones like
    // ReadVariableOp, AssignVariableOp and other computations to facilitate
    // transformations like resource op lifting.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass converts tf_device::LaunchFuncOp into an equivalent
        TF::PartitionedCallOp so that it can be exported to TensorFlow GraphDef.
      }];
    
      let constructor = "TFDevice::CreateConvertLaunchFuncToTFCallPass()";
    }
    
    def MarkInputOutputAliasesPass : Pass<"tf-device-mark-input-output-aliases", "ModuleOp"> {
      let summary = "Marks device cluster inputs-output pairs that read/write to the same variable as aliases";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top