Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,788 for Function1 (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that promotes resource reads/writes in `functions` to inputs
    // and outputs of `functions`, assuming that resource operations have already
    // been decomposed and function calls have already been inlined. If `functions`
    // is empty, the pass is applied to the main function by default. The pass also
    // annotates the input arguments for resources with the indices of their
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/FluentFuture.java

       *
       * @param function A Function to transform the results of this future to the results of the
       *     returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       */
      public final <T extends @Nullable Object> FluentFuture<T> transform(
          Function<? super V, T> function, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

        return
      }
    // The initializer function is untouched when the main function is empty.
    // CHECK: func.func @NoOp
    
      func.func @main() attributes {tf_saved_model.exported_names = ["main"]} {
        return
      }
    // CHECK: func.func @main()
    // CHECK-NEXT: return
    }
    
    // -----
    
    // Tests when the initializer function is empty.
    // CHECK-LABEL: module attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. test/nosplit.go

    # These are test cases for the linker analysis that detects chains of
    # nosplit functions that would cause a stack overflow.
    #
    # Lines beginning with # are comments.
    #
    # Each test case describes a sequence of functions, one per line.
    # Each function definition is the function name, then the frame size,
    # then optionally the keyword 'nosplit', then the body of the function.
    # The body is assembly code, with some shorthands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		mappings[m.ID] = m
    	}
    	functions := make(map[uint64]*Function, len(p.Function))
    	for _, f := range p.Function {
    		if f == nil {
    			return fmt.Errorf("profile has nil function")
    		}
    		if f.ID == 0 {
    			return fmt.Errorf("found function with reserved ID=0")
    		}
    		if functions[f.ID] != nil {
    			return fmt.Errorf("multiple functions with same id: %d", f.ID)
    		}
    		functions[f.ID] = f
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    	f := &Function{
    		ID:         uint64(len(pm.p.Function) + 1),
    		Name:       src.Name,
    		SystemName: src.SystemName,
    		Filename:   src.Filename,
    		StartLine:  src.StartLine,
    	}
    	pm.functions[k] = f
    	pm.functionsByID[src.ID] = f
    	pm.p.Function = append(pm.p.Function, f)
    	return f
    }
    
    // key generates a struct to be used as a key for maps.
    func (f *Function) key() functionKey {
    	return functionKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top