Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 156 for fabs (0.04 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

    #define TAC_REGISTER_GPU_OP(Op, Create)                                    \
      TargetHardwareOpRegistration<GpuHardware, Op> Op##_GpuHardware_hardware( \
          Create);
    
    // Currently used for these ops:
    // tfl.Abs / tfl.Average_pool_2d / tfl.Cos / tfl.div / tfl.exp / tfl.hardswish /
    // tfl.log / tfl.logistic / tfl.max_pool_2d / tfl.mirror_pad / tfl.maximum /
    // tfl.custom / tfl.mean / tfl.minimum / tfl.pad / tfl.pow / tfl.prelu /
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. misc/cgo/gmp/gmp.go

    }
    
    // Neg sets z = -x and returns z.
    func (z *Int) Neg(x *Int) *Int {
    	x.doinit()
    	z.doinit()
    	C.mpz_neg(&z.i[0], &x.i[0])
    	return z
    }
    
    // Abs sets z to the absolute value of x and returns z.
    func (z *Int) Abs(x *Int) *Int {
    	x.doinit()
    	z.doinit()
    	C.mpz_abs(&z.i[0], &x.i[0])
    	return z
    }
    
    /*
     * functions without a clear receiver
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/vcweb.go

    	}
    	var err error
    	scriptDir, err = filepath.Abs(scriptDir)
    	if err != nil {
    		return nil, err
    	}
    
    	if workDir == "" {
    		workDir, err = os.MkdirTemp("", "vcweb-*")
    		if err != nil {
    			return nil, err
    		}
    		logger.Printf("vcweb work directory: %s", workDir)
    	} else {
    		workDir, err = filepath.Abs(workDir)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutput.java

                    String data = "";
                    // Flushing data split across previous and current appending
                    if (start < 0 && pos >= 0) {
                        data = seenFromEol.string(Math.abs(start)) + text.substring(0, pos);
                    // Flushing data coming only from current appending
                    } else if (start >= 0) {
                        data = text.substring(start, pos);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/math/cmplx/sin.go

    	}
    	s, c := math.Sincos(imag(x))
    	sh, ch := sinhcosh(real(x))
    	return complex(c*ch, s*sh)
    }
    
    // calculate sinh and cosh.
    func sinhcosh(x float64) (sh, ch float64) {
    	if math.Abs(x) <= 0.5 {
    		return math.Sinh(x), math.Cosh(x)
    	}
    	e := math.Exp(x)
    	ei := 0.5 / e
    	e *= 0.5
    	return e - ei, e + ei
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. schema/index_test.go

    			Comment: "hello , world",
    			Where:   "age > 10",
    			Option:  "WITH PARSER parser_name",
    			Fields: []schema.IndexOption{{Field: &schema.Field{Name: "Name6"}}, {
    				Field:      &schema.Field{Name: "Age"},
    				Expression: "ABS(age)",
    			}},
    		},
    		"idx_id": {
    			Name:   "idx_id",
    			Fields: []schema.IndexOption{{Field: &schema.Field{Name: "MemberNumber"}}, {Field: &schema.Field{Name: "OID", UniqueIndex: "idx_oid"}}},
    		},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        %y, %idx = "tf.Unique"(%arg0) {device = ""} : (tensor<3xf32>) -> (tensor<?xf32>, tensor<3xi32>)
        return %y : tensor<?xf32>
      }
    
      // CHECK-LABEL: @abs
      func.func @abs(%arg0: tensor<2xf32>) -> tensor<2xf32> {
        // CHECK-NOT: tf.Abs
        %0 = "tf.Abs"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
        func.return %0 : tensor<2xf32>
      }
    
      // CHECK-LABEL: func @testBroadcastGradientArgs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  9. 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)
  10. src/cmd/internal/obj/ppc64/a.out.go

    	ADIVW
    	ADIVWCC
    	ADIVWVCC
    	ADIVWV
    	ADIVWU
    	ADIVWUCC
    	ADIVWUVCC
    	ADIVWUV
    	AMODUD
    	AMODUW
    	AMODSD
    	AMODSW
    	AEQV
    	AEQVCC
    	AEXTSB
    	AEXTSBCC
    	AEXTSH
    	AEXTSHCC
    	AFABS
    	AFABSCC
    	AFADD
    	AFADDCC
    	AFADDS
    	AFADDSCC
    	AFCMPO
    	AFCMPU
    	AFCTIW
    	AFCTIWCC
    	AFCTIWZ
    	AFCTIWZCC
    	AFDIV
    	AFDIVCC
    	AFDIVS
    	AFDIVSCC
    	AFMADD
    	AFMADDCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top