Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for fromlen (0.1 sec)

  1. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/utils/stateful_ops_utils.h"
    
    // Background info:
    // Currently the model taken to MLIRConverter is frozen (all the variables have
    // been converted to constants, all the assign ops are gone, etc.). However,
    // TFLite has these variable tensors semantics. So the variable mapping from TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

        // processed.
        for (auto it : remove_operands) {
          it.first->eraseOperands(it.second);
        }
    
        func.eraseArguments(args_to_erase);
      }
    
      // Erase all global tensors that were frozen.
      for (auto global_tensor : frozen_global_tensors) {
        remaining_global_tensor_ops.erase(global_tensor);
        global_tensor->erase();
      }
    
      // Verify that there are no remaining global tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/net/http/servemux121.go

    // servemux121.go exists solely to provide a snapshot of
    // the pre-Go 1.22 ServeMux implementation for backwards compatibility.
    // Do not modify this file, it should remain frozen.
    
    import (
    	"internal/godebug"
    	"net/url"
    	"sort"
    	"strings"
    	"sync"
    )
    
    var httpmuxgo121 = godebug.New("httpmuxgo121")
    
    var use121 bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top