Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for ession (0.27 sec)

  1. tensorflow/c/c_api.cc

        const Graph& graph = session->graph->graph;
    
        const string& mutation_warning = session->graph->sessions[session];
        if (!mutation_warning.empty()) {
          // TODO(b/74949947): turn this back into an error status
          LOG(WARNING) << mutation_warning;
          session->graph->sessions[session].clear();
        }
    
        const auto num_nodes = graph.num_node_ids();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    include "mlir/Pass/PassBase.td"
    
    // TF dialect passes.
    
    def TensorflowGPUFusion : Pass<"tf-gpu-op-fusion", "mlir::func::FuncOp"> {
      let summary = "Fusion optimization for GPU targets";
      let description = [{
        This pass is performing fusion specific to GPU targets. This is an ad-hoc
        pass for now, but should be integrated with some notion of "target" in the
        MLIR pipeline in the future.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            list(original_signature_map.keys()), set(signatures.keys())
        )
        self.assertDictEqual(original_signature_map, converted_signature_map)
    
      def test_duplicated_tensor_name(self):
        with session.Session(graph=ops.Graph()) as sess:
          input_tensor = array_ops.placeholder(
              dtypes.float32, shape=[], name='input'
          )
          q_input = array_ops.fake_quant_with_min_max_args(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            /* Downgrade one transport to the lower of the negotiated buffer sizes
             * so we can just send whatever is received.
             */
    
            SmbTransport t1 = tree.session.transport;
            SmbTransport t2 = dest.tree.session.transport;
    
            if( t1.snd_buf_size < t2.snd_buf_size ) {
                t2.snd_buf_size = t1.snd_buf_size;
            } else {
                t1.snd_buf_size = t2.snd_buf_size;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (GetReshapeOutputType(input, shape, error_handler, output_type)
              .succeeded()) {
        inferredReturnTypes.assign({output_type});
        return success();
      }
      Type result_type;
      result_type = UnrankedTensorType::get(
          input.getType().cast<ShapedType>().getElementType());
      inferredReturnTypes.assign({result_type});
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		ldr.SetSymAlign(ldr.Lookup("runtime.bss", 0), state.dataMaxAlign[sym.SBSS])
    	}
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// data/rodata (and related) symbols.
    	state.allocateDataSections(ctxt)
    
    	state.allocateSEHSections(ctxt)
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// DWARF symbols.
    	state.allocateDwarfSections(ctxt)
    
    	/* number the sections */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Aopf;":                            "\U0001d538",
    	"&ApplyFunction;":                   "\u2061",
    	"&Aring;":                           "\u00c5",
    	"&Ascr;":                            "\U0001d49c",
    	"&Assign;":                          "\u2254",
    	"&Atilde;":                          "\u00c3",
    	"&Auml;":                            "\u00c4",
    	"&Backslash;":                       "\u2216",
    	"&Barv;":                            "\u2ae7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    // Result, Rows)
    type driverConn struct {
    	db        *DB
    	createdAt time.Time
    
    	sync.Mutex  // guards following
    	ci          driver.Conn
    	needReset   bool // The connection session should be reset before use if true.
    	closed      bool
    	finalClosed bool // ci.Close has been called
    	openStmt    map[*driverStmt]bool
    
    	// guarded by db.mu
    	inUse      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/html/entity.go

    		"Aopf;":                            '\U0001D538',
    		"ApplyFunction;":                   '\U00002061',
    		"Aring;":                           '\U000000C5',
    		"Ascr;":                            '\U0001D49C',
    		"Assign;":                          '\U00002254',
    		"Atilde;":                          '\U000000C3',
    		"Auml;":                            '\U000000C4',
    		"Backslash;":                       '\U00002216',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            } else {
                // TODO - the suffix should be a deterministic function of the known and enabled annotations
                // For now, just assign using a counter
                suffix = ClassGeneratorSuffixRegistry.assign("$Decorated");
                generatedClasses = cacheFactory.newClassMap();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top