Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for x_name (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      const auto verify_size = [&](const size_t x, const char* x_name) {
        if (x == 0 || x == window_dimensions.size()) {
          return true;
        } else {
          llvm::errs()
              << "Window has different number of window dimensions than of "
              << x_name
              << "\nNumber of window dimensions: " << window_dimensions.size()
              << "\nNumber of " << x_name << ": " << x << "\n";
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        bool b_is_resource = (b->output_type(0) == DT_RESOURCE);
        // Uses the name as a tiebreaker so the output is deterministic.
        StringPiece a_name(a->name());
        StringPiece b_name(b->name());
        return std::tie(a_is_resource, a_name) < std::tie(b_is_resource, b_name);
      });
    
      // Sorts the retvals by name so the order is deterministic.
      std::sort(retvals.begin(), retvals.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        },
        outputs = {"out": "%{name}.java"},
        implementation = _impl,
    )
    
    def junit_tests(name, srcs, **kwargs):
        s_name = name.replace("-", "_") + "TestSuite"
        _GenSuite(
            name = s_name,
            srcs = srcs,
            outname = s_name,
        )
        java_test(
            name = name,
            test_class = s_name,
            srcs = srcs + [":" + s_name],
            **kwargs
        )
        '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
  5. src/net/interface_bsd_test.go

    	if runtime.GOOS == "openbsd" {
    		ti.name = fmt.Sprintf("vether%d", vid)
    	} else {
    		ti.name = fmt.Sprintf("vlan%d", vid)
    	}
    	xname, err := exec.LookPath("ifconfig")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "create"},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. src/net/interface_linux_test.go

    var (
    	igmpInterfaceTable = []Interface{
    		{Name: "lo"},
    		{Name: "eth0"}, {Name: "eth1"}, {Name: "eth2"},
    		{Name: "eth0.100"}, {Name: "eth0.101"}, {Name: "eth0.102"}, {Name: "eth0.103"},
    		{Name: "device1tap2"},
    	}
    	igmp6InterfaceTable = []Interface{
    		{Name: "lo"},
    		{Name: "eth0"}, {Name: "eth1"}, {Name: "eth2"},
    		{Name: "eth0.100"}, {Name: "eth0.101"}, {Name: "eth0.102"}, {Name: "eth0.103"},
    		{Name: "device1tap2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  7. test/rename.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FqName.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface FqName : Serializable {
        val packageName: String
        val simpleName: String
        val qualifiedName: String
    
        companion object Empty : FqName {
            override val packageName: String
                get() = ""
            override val simpleName: String
                get() = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        elif f_type == (TFRTypes.PY_BUILTIN_FUNC,):
          assert name.is_simple()
          if name == QN('range'):
            return {TFRTypes.ATTR}, None
    
          if name == QN('len'):
            return {TFRTypes.INDEX}, None
    
        elif f_type == (TFRTypes.TFR_BUILTIN_FUNC,):
          op_name = name.qn[0]
          if callable(TFR_BUILTINS[op_name]):
            return {TFR_BUILTINS[op_name](*[list(arg)[0] for arg in args])}, None
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner_test.go

    	src  string
    	op   Operator
    	prec int
    }{
    	// name samples
    	{_Name, "x", 0, 0},
    	{_Name, "X123", 0, 0},
    	{_Name, "foo", 0, 0},
    	{_Name, "Foo123", 0, 0},
    	{_Name, "foo_bar", 0, 0},
    	{_Name, "_", 0, 0},
    	{_Name, "_foobar", 0, 0},
    	{_Name, "a۰۱۸", 0, 0},
    	{_Name, "foo६४", 0, 0},
    	{_Name, "bar9876", 0, 0},
    	{_Name, "ŝ", 0, 0},
    	{_Name, "ŝfoo", 0, 0},
    
    	// literal samples
    	{_Literal, "0", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top