Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ABS (0.17 sec)

  1. src/time/format.go

    	}
    	return s
    }
    
    // GoString implements [fmt.GoStringer] and formats t to be printed in Go source
    // code.
    func (t Time) GoString() string {
    	abs := t.abs()
    	year, month, day, _ := absDate(abs, true)
    	hour, minute, second := absClock(abs)
    
    	buf := make([]byte, 0, len("time.Date(9999, time.September, 31, 23, 59, 59, 999999999, time.Local)"))
    	buf = append(buf, "time.Date("...)
    	buf = appendInt(buf, year, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            given:
            file('provider.txt').text = 'provider'
            file('fis-path.txt').text = 'fis-path'
            file('fis-file.txt').text = 'fis-file'
            file('fis-abs.txt').text = 'fis-abs'
            buildFile '''
                providers.fileContents(layout.projectDirectory.file("provider.txt")).with { provider ->
                    println("provider = ${provider.asText.get()}")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      if (symmetric) {
        // When the symmetric case, ConvertStatsToQDQs in PrepareQuantizePass
        // updates the min and max values into bigger absolute values.
        float_max = std::max(std::abs(float_min), std::abs(float_max));
        float_min = -float_max;
      }
    
      ASSERT_THAT(quantized_quant_params.scale, SizeIs(1));
      ASSERT_THAT(quantized_quant_params.zero_point, SizeIs(1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    // assuming they were originally relative to dir,
    // and returns that new list.
    func mkAbsFiles(dir string, files []string) []string {
    	abs := make([]string, len(files))
    	for i, f := range files {
    		if !filepath.IsAbs(f) {
    			f = filepath.Join(dir, f)
    		}
    		abs[i] = f
    	}
    	return abs
    }
    
    // passLongArgsInResponseFiles modifies cmd such that, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        //
        // %size = ceil(abs((%limit - %start) / %delta))
        auto range = rewriter.create<mhlo::SubtractOp>(op.getLoc(), limit, start);
        auto abs = rewriter.create<mhlo::AbsOp>(op.getLoc(), range);
    
        // Delta is not necessarily the same type as start and limit.
        auto abs_cast =
            rewriter.create<mhlo::ConvertOp>(op.getLoc(), compute_type, abs);
        auto delta_cast =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    include "mlir/Interfaces/CallInterfaces.td"
    include "mlir/Interfaces/InferTypeOpInterface.td"
    include "mlir/IR/OpAsmInterface.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    def TF_AbsOp : TF_Op<"Abs", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the absolute value of a tensor.";
    
      let description = [{
    Given a tensor `x`, this operation returns a tensor containing the absolute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    }
    
    func getValidPath(path string) (string, error) {
    	if path == "" {
    		return path, errInvalidArgument
    	}
    
    	var err error
    	// Disallow relative paths, figure out absolute paths.
    	path, err = filepath.Abs(path)
    	if err != nil {
    		return path, err
    	}
    
    	fi, err := Lstat(path)
    	if err != nil && !osIsNotExist(err) {
    		return path, err
    	}
    	if osIsNotExist(err) {
    		// Disk not found create it.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Enable JIT-compiled i64-indexed kernels on GPU for large tensors with more than 2**32 elements.
        *   Unary GPU kernels: Abs, Atanh, Acos, Acosh, Asin, Asinh, Atan, Cos, Cosh, Sin, Sinh, Tan, Tanh.
        *   Binary GPU kernels: AddV2, Sub, Div, DivNoNan, Mul, MulNoNan, FloorDiv, Equal, NotEqual, Greater, GreaterEqual, LessEqual, Less.
    
    * `tf.lite`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpRoundToEven, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.S390X, sys.Wasm)
    	addF("math", "Abs",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpAbs, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.ARM, sys.PPC64, sys.RISCV64, sys.Wasm, sys.MIPS, sys.MIPS64)
    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