Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for unwrapped (0.28 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    }
    
    // deadcode marks all reachable symbols.
    //
    // The basis of the dead code elimination is a flood fill of symbols,
    // following their relocations, beginning at *flagEntrySymbol.
    //
    // This flood fill is wrapped in logic for pruning unused methods.
    // All methods are mentioned by relocations on their receiver's *rtype.
    // These relocations are specially defined as R_METHODOFF by the compiler
    // so we can detect and manipulated them here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        tf_executor.island:
    
        ```mlir
          func nested @_tpu_v1_compat_outlined_func0() -> tensor<i32> {
            ...
          }
        ```
    
        and will then replace the island with the wrapped call:
    
        ```mlir
          func @test() -> tensor<i32> {
            %0 = tf_executor.graph {
              %outputs, %control = tf_executor.island wraps "tf.PartitionedCall"() {
    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. internal/grid/connection.go

    		if client.deadline == 0 {
    			client.cancelFn(context.DeadlineExceeded)
    			return nil, context.DeadlineExceeded
    		}
    	}
    	for {
    		// Handle the extremely unlikely scenario that we wrapped.
    		if _, loaded := c.outgoing.LoadOrStore(client.MuxID, client); client.MuxID != 0 && !loaded {
    			if debugReqs {
    				_, found := c.outgoing.Load(client.MuxID)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            DCOMMENT("\t\tValue Result mapped to " << attr);
            RecordValue(ValuePort(std::get<0>(result)), attr);
          } else {
            DCOMMENT("\t\tValue result unmapped, consider value type:" << value);
            RefineResultType(op, std::get<0>(result), value.getType());
          }
        }
    
        if (ElementsAttr eattr = mlir::dyn_cast_or_null<ElementsAttr>(attr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    		}
    		state.assignToSection(sect, symn, sym.SRODATA)
    		setCarrierSize(symn, state.datsize-symnStartValue)
    		if ctxt.HeadType == objabi.Haix {
    			// Read-only symbols might be wrapped inside their outer
    			// symbol.
    			// XCOFF symbol table needs to know the size of
    			// these outer symbols.
    			xcoffUpdateOuterSize(ctxt, state.datsize-symnStartValue, symn)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    	}
    
    	return &sendFileReader{Reader: io.LimitReader(file, length), Closer: file}, nil
    }
    
    // closeWrapper converts a function to an io.Closer
    type closeWrapper func() error
    
    // Close calls the wrapped function.
    func (c closeWrapper) Close() error {
    	return c()
    }
    
    // CreateFile - creates the file.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		store:      store,
    		nextObject: nextPod,
    	}
    
    	revertTransformer := store.UpdatePrefixTransformer(
    		func(previousTransformer *PrefixTransformer) value.Transformer {
    			transformer.wrapped = previousTransformer
    			return transformer
    		})
    	defer revertTransformer()
    
    	for i := 0; i < 5; i++ {
    		if err := transformer.createObject(ctx); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          control_edges.emplace_back(control_nodes_at[outer_op],
                                     control_nodes_at[owner]);
        }
        control_token.dropAllUses();
    
        // Replace the ControlNodeOp with the wrapped operation.
        rewriter.setInsertionPointAfter(outer_op);
        auto* cloned_inner = rewriter.clone(*inner_op);
        for (auto it :
             llvm::zip(control_node_op.getOutputs(), cloned_inner->getResults())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

        # Bash cannot do non-integer math, shell out to awk.
        latency="$(echo "${current_time} ${start_time}" | awk '{print $1 - $2}')s"
    
        # The default latency is null which cannot be wrapped as a string so we must
        # do it here instead of the printf.
        latency="\"${latency}\""
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    // Currently (1.17 dev) such a stack map is always ABI0;
    // any ABI wrapper that is present is nosplit, hence a precise
    // stack map is not needed there (the parameters survive only long
    // enough to call the wrapped assembly function).
    // This always returns a freshly copied ABI.
    func AbiForBodylessFuncStackMap(fn *ir.Func) *abi.ABIConfig {
    	return ssaConfig.ABI0.Copy() // No idea what races will result, be safe
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top