Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for fabs (0.09 sec)

  1. src/go/internal/srcimporter/srcimporter_test.go

    	{"math.Pi", "const Pi untyped float"},
    	{"math.Sin", "func Sin(x float64) float64"},
    	{"math/big.Int", "type Int struct{neg bool; abs nat}"},
    	{"golang.org/x/text/unicode/norm.MaxSegmentSize", "const MaxSegmentSize untyped int"},
    }
    
    func TestImportedTypes(t *testing.T) {
    	if !testenv.HasSrc() {
    		t.Skip("no source code available")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      if (!cst_op) return false;
      ElementsAttr value = cst_op.getValue();
      if (!value.isSplat()) return false;
      if (!value.getElementType().isF32()) return false;
      return std::abs(value.getSplatValue<float>() - val) < kTolerance;
    }
    
    // Determines if the given op is semantically that of the gauss error function.
    bool MatchERF(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/state.go

    // ${/} and ${:} (for the platform's path and list separators respectively),
    // but does not pass those to subprocesses.
    func NewState(ctx context.Context, workdir string, initialEnv []string) (*State, error) {
    	absWork, err := filepath.Abs(workdir)
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithCancel(ctx)
    
    	// Make a fresh copy of the env slice to avoid aliasing bugs if we ever
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top