Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddFunctionsForExportedNamesPass (0.3 sec)

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

    namespace {
    
    #define GEN_PASS_DEF_ADDFUNCTIONSFOREXPORTEDNAMESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.h.inc"
    
    struct AddFunctionsForExportedNamesPass
        : public impl::AddFunctionsForExportedNamesPassBase<
              AddFunctionsForExportedNamesPass> {
      void runOnOperation() override;
    };
    
    // Set the (array of) exported name(s) of a (public) function to just
    // contain the given string.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

    	  call @b() : () -> ()
    	  call @c() : () -> ()
    	  return
    	}
      }];
      let constructor = "::mlir::tf_saved_model::CreateConvertSessionInitializerToFunctionPass()";
    }
    
    def AddFunctionsForExportedNamesPass : Pass<"tf-saved-model-add-functions-for-exported-names", "ModuleOp"> {
      let summary = "Create a trampoline function for each exported name.";
      let description = [{
          This converts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top