Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for div1 (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      for (Node* n : graph->nodes()) {
        if (absl::EndsWith(n->name(), /*suffix=*/"dev0")) {
          n->set_assigned_device_name(string(xla_gpu_dev0));
        } else if (absl::EndsWith(n->name(), /*suffix=*/"dev1")) {
          n->set_assigned_device_name(string(xla_gpu_dev1));
        }
      }
      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
      // Each of the MatMuls should be in a separate cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FDIV", argLength: 2, reg: fp21, asm: "FDIV"},   // arg0/arg1
    		{name: "FDIVS", argLength: 2, reg: fp21, asm: "FDIVS"}, // arg0/arg1
    
    		{name: "DIVD", argLength: 2, reg: gp21, asm: "DIVD", typ: "Int64"},   // arg0/arg1 (signed 64-bit)
    		{name: "DIVW", argLength: 2, reg: gp21, asm: "DIVW", typ: "Int32"},   // arg0/arg1 (signed 32-bit)
    		{name: "DIVDU", argLength: 2, reg: gp21, asm: "DIVDU", typ: "Int64"}, // arg0/arg1 (unsigned 64-bit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    [[customizing_wrapper]]
    == Customizing the Gradle Wrapper
    
    Most users of Gradle are happy with the default runtime behavior of the Wrapper.
    However, organizational policies, security constraints or personal preferences might require you to dive deeper into customizing the Wrapper.
    
    Thankfully, the built-in `wrapper` task exposes numerous options to bend the runtime behavior to your needs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    	if !reflect.DeepEqual(saw, want) {
    		t.Errorf("got directories %v, want %v", saw, want)
    	}
    }
    
    func TestEscaping(t *testing.T) {
    	dir1 := t.TempDir()
    	dir2 := t.TempDir()
    	chdir(t, dir1)
    
    	for _, p := range []string{
    		filepath.Join(dir2, "x"),
    	} {
    		if !filepath.IsLocal(p) {
    			continue
    		}
    		f, err := os.Create(p)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. internal/bucket/replication/replication_test.go

    			prefix:         "testdir/",
    			expectedNonRec: false,
    			expectedRec:    true,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    			// TODO: add other architectures?
    			if b.Func.Config.arch != "386" && b.Func.Config.arch != "amd64" {
    				break
    			}
    			divr := v.Args[1]
    			divrLim, divrLimok := ft.limits[divr.ID]
    			divd := v.Args[0]
    			divdLim, divdLimok := ft.limits[divd.ID]
    			if (divrLimok && (divrLim.max < -1 || divrLim.min > -1)) ||
    				(divdLimok && divdLim.min > mostNegativeDividend[v.Op]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    		}
    	}
    }
    
    func TestXLStorageIsDirEmpty(t *testing.T) {
    	tmp := t.TempDir()
    
    	// Should give false on non-existent directory.
    	dir1 := slashpath.Join(tmp, "non-existent-directory")
    	if isDirEmpty(dir1, true) {
    		t.Error("expected false for non-existent directory, got true")
    	}
    
    	// Should give false for not-a-directory.
    	dir2 := slashpath.Join(tmp, "file")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. cmd/server-main.go

    	Flags:  append(ServerFlags, GlobalFlags...),
    	Action: serverMain,
    	CustomHelpTemplate: `NAME:
      {{.HelpName}} - {{.Usage}}
    
    USAGE:
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR1 [DIR2..]
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64}
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} DIR{65...128}
    
    DIR:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  9. src/cmd/go/internal/load/pkg.go

    			base.Fatalf("%s", err)
    		}
    		if fi.IsDir() {
    			base.Fatalf("%s is a directory, should be a Go file", file)
    		}
    		dir1 := filepath.Dir(file)
    		if dir == "" {
    			dir = dir1
    		} else if dir != dir1 {
    			base.Fatalf("named files must all be in one directory; have %s and %s", dir, dir1)
    		}
    		dirent = append(dirent, fi)
    	}
    	ctxt.ReadDir = func(string) ([]fs.FileInfo, error) { return dirent, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    new File(pom.getBasedir(), "target/classes/dir0"), new File((String) pom.getValue("properties/dir0")));
            assertEquals(new File(pom.getBasedir(), "src/test/dir1"), new File((String) pom.getValue("properties/dir1")));
            assertEquals(
                    new File(pom.getBasedir(), "target/site/dir2"), new File((String) pom.getValue("properties/dir2")));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top