Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for output1 (0.14 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          # tensor outputs
          outputs = [
              _get_type_info_from_proto(arg_def) for arg_def in op_def.output_arg
          ]
    
          inputs = ','.join(inputs)
          outputs = ','.join(outputs)
          attrs = ','.join(sorted(derived_attrs.union(attr_names)))
          tfr_funcs.add('{}{}) -> ({}) attributes {{{}}}'.format(
              tfr_func, inputs, outputs, attrs))
        return sorted(list(tfr_funcs))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      })
      }]>, "all users are TF/TFL operations.">;
    
    def RemoveShapeOnlyCast : Pat<(TFL_CastOp:$output $input),
                                (replaceWithValue $input),
                                [(SameElementType $input, $output),
                                 (AllUsersInTF $output)]>;
    
    
    // Checks if the operand0's rank is one less than operand1's rank.
    def PReluAlphaRankCheck : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	cc, err := quotedSplit(cc1)
    	if err != nil {
    		fatalf("split CC: %v", err)
    	}
    	var ccHelp = append(cc, "--help")
    
    	if output, err := exec.Command(ccHelp[0], ccHelp[1:]...).CombinedOutput(); err != nil {
    		outputHdr := ""
    		if len(output) > 0 {
    			outputHdr = "\nCommand output:\n\n"
    		}
    		fatalf("cannot invoke C compiler %q: %v\n\n"+
    			"Go needs a system C compiler for use with cgo.\n"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    )
    
    // Error table
    var errors = [...]string{
    	1:   "operation not permitted",
    	2:   "no such file or directory",
    	3:   "no such process",
    	4:   "interrupted system call",
    	5:   "input/output error",
    	6:   "device not configured",
    	7:   "argument list too long",
    	8:   "exec format error",
    	9:   "bad file descriptor",
    	10:  "no child processes",
    	11:  "resource deadlock avoided",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	}
    	d.dwarfGenerateDebugSyms()
    }
    
    // dwUnitSyms stores input and output symbols for DWARF generation
    // for a given compilation unit.
    type dwUnitSyms struct {
    	// Inputs for a given unit.
    	lineProlog  loader.Sym
    	rangeProlog loader.Sym
    	infoEpilog  loader.Sym
    
    	// Outputs for a given unit.
    	linesyms   []loader.Sym
    	infosyms   []loader.Sym
    	locsyms    []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    			// expected error, got one
    			if *debug {
    				fmt.Printf("%s: %s\n\t%s\n", test.name, test.input, err)
    			}
    		}
    		result := b.String()
    		if result != test.output {
    			t.Errorf("%s: expected\n\t%q\ngot\n\t%q", test.name, test.output, result)
    		}
    	}
    }
    
    func TestExecute(t *testing.T) {
    	testExecute(execTests, nil, t)
    }
    
    var delimPairs = []string{
    	"", "", // default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    	}
    	command = append(command, "-connect")
    	command = append(command, fmt.Sprintf("127.0.0.1:%d", port))
    	cmd := exec.Command(command[0], command[1:]...)
    	cmd.Stdin = nil
    	var output bytes.Buffer
    	cmd.Stdout = &output
    	cmd.Stderr = &output
    	if err := cmd.Start(); err != nil {
    		return nil, nil, err
    	}
    
    	connChan := make(chan any, 1)
    	go func() {
    		tcpConn, err := l.Accept()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "device not configured"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    			output := mergePodStatus(tc.oldPodStatus(getPodStatus()), tc.newPodStatus(getPodStatus()), tc.hasRunningContainers)
    			if !conditionsEqual(output.Conditions, tc.expectPodStatus.Conditions) || !statusEqual(output, tc.expectPodStatus) {
    				t.Fatalf("unexpected output: %s", cmp.Diff(tc.expectPodStatus, output))
    			}
    		})
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			log.Fatal(err)
    		}
    		*flagTmpdir = dir
    		ownTmpDir = true
    		AtExit(func() {
    			os.RemoveAll(*flagTmpdir)
    		})
    	}
    
    	// change our output to temporary object file
    	if err := ctxt.Out.Close(); err != nil {
    		Exitf("error closing output file")
    	}
    	mayberemoveoutfile()
    
    	p := filepath.Join(*flagTmpdir, "go.o")
    	if err := ctxt.Out.Open(p); err != nil {
    		Exitf("cannot create %s: %v", p, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top