Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for fabs (0.13 sec)

  1. src/go/printer/printer_test.go

    		t.Run(fmt.Sprint(indent), func(t *testing.T) {
    			t.Parallel()
    			var buf bytes.Buffer
    			(&Config{Tabwidth: tabwidth, Indent: indent}).Fprint(&buf, fset, file)
    			// all code must be indented by at least 'indent' tabs
    			lines := bytes.Split(buf.Bytes(), []byte{'\n'})
    			for i, line := range lines {
    				if len(line) == 0 {
    					continue // empty lines don't have indentation
    				}
    				n := 0
    				for j, b := range line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/list7.go

    // cmd/7l/list.c and cmd/7l/sub.c from Vita Nuova.
    // https://bitbucket.org/plan9-from-bell-labs/9-cc/src/master/
    //
    // 	Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
    // 	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    // 	Portions Copyright © 1997-1999 Vita Nuova Limited
    // 	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    // 	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradient_checker.cc

      AbstractTensorHandle* f_outputs[1];
    
      // Numerical Grad Check
      for (int i = 0; i < num_elems; i++) {
        // Get relative epsilon value
        float epsilon = theta_data[i] == 0 ? 1e-4 : std::abs(theta_data[i] * 1e-4);
        AbstractTensorHandlePtr two_eps;
        {
          AbstractTensorHandle* two_eps_raw = nullptr;
          TF_RETURN_IF_ERROR(TestScalarTensorHandle<float, TF_FLOAT>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    	SYS_GETGID         = 47  // { gid_t sys_getgid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    	SYS_GETGID         = 47  // { gid_t sys_getgid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top