Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,410 for Function1 (0.19 sec)

  1. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	}
    
    	// First compute inlinability of all functions in the package.
    	inline.CanInlineFuncs(pkg.Funcs, inlProfile)
    
    	// Now we make a second pass to do devirtualization and inlining of
    	// calls. Order here should not matter.
    	for _, fn := range pkg.Funcs {
    		DevirtualizeAndInlineFunc(fn, inlProfile)
    	}
    
    	if base.Flag.LowerL != 0 {
    		// Perform a garbage collection of hidden closures functions that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.h

    // After applying the function, a quantize/dequantize functions are created
    // where the body of each function contains a specific quantization algorithm.
    // The input of the quantize function has one operand of
    // IsValueWithQuantizablePrecision and the output is a tensor with supported
    // quantized precision (like int8). For dequantize function, it is the other way
    // around.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 07:44:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			bu.SetFastSymbolization(true)
    		}
    	}
    
    	functions := map[profile.Function]*profile.Function{}
    	addFunction := func(f *profile.Function) *profile.Function {
    		if fp := functions[*f]; fp != nil {
    			return fp
    		}
    		functions[*f] = f
    		f.ID = uint64(len(prof.Function)) + 1
    		prof.Function = append(prof.Function, f)
    		return f
    	}
    
    	missingBinaries := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/OptionalTest.java

      public void testTransform_absent() {
        assertEquals(Optional.absent(), Optional.absent().transform(Functions.identity()));
        assertEquals(Optional.absent(), Optional.absent().transform(Functions.toStringFunction()));
      }
    
      public void testTransform_presentIdentity() {
        assertEquals(Optional.of("a"), Optional.of("a").transform(Functions.identity()));
      }
    
      public void testTransform_presentToString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

                                             while_region.getBody()));
        } else if (auto case_op = dyn_cast<CaseOp>(op)) {
          llvm::SmallVector<func::FuncOp, 4> functions;
          case_op.get_branch_functions(functions);
          AnalyzeFunctionalCaseOrIfOp(case_op, functions, backtrack_analysis);
        } else if (auto if_op = dyn_cast<IfOp>(op)) {
          AnalyzeFunctionalCaseOrIfOp(
              if_op, {if_op.then_function(), if_op.else_function()},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/internal/abi/rangefuncconsts.go

    	RF_PANIC                          // body of loop is either currently running, or has panicked
    	RF_EXHAUSTED                      // iterator function return, i.e., sequence is "exhausted"
    	RF_MISSING_PANIC = 4              // body of loop panicked but iterator function defer-recovered it away
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromConfiguringFunctions.kt

    
    /**
     * Provides type discovery via functions that return an object or configure an object accepting a lambda as the last parameter
     * (via [org.gradle.api.Action] or a Kotlin function type, see [gradleConfigureLambdas]).
     *
     * All configured or returned types that appear in [isPublicAndRestricted]-matching will be discovered (for now, regardless of actual function semantics).
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // If set, use the value as the device type and mark the function graph for
      // XLA compilation.
      string xla_compile_device_type;
      // If true, enables moving ops to different devices or moving unsupported ops
      // out of a compilation cluster.
      bool enable_soft_placement = false;
      // If true, a function attribute, `tf._original_func_name`, will be set in
      // functions which contains the corresponding original TF function name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/c/eager/tape.h

    // gradient functions.
    //
    // Some gradient functions can accept None arguments for gradients. The
    // following maps the operation name to the indices at which the corresponding
    // gradient function can accept None values. e.g. FusedBatchNorm outputs 5
    // values and hence receives 5 gradient values during backprop. However the
    // gradient function uses only the first of those values and ignores the rest.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    	outputLen int             // output length for full security
    	function  code            // KIMD/KLMD function code
    	state     spongeDirection // whether the sponge is absorbing or squeezing
    }
    
    func newAsmState(function code) *asmState {
    	var s asmState
    	s.function = function
    	switch function {
    	case sha3_224:
    		s.rate = 144
    		s.outputLen = 28
    	case sha3_256:
    		s.rate = 136
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top