Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for output$1 (0.24 sec)

  1. src/compress/lzw/reader.go

    		case code <= r.hi:
    			c, i := code, len(r.output)-1
    			if code == r.hi && r.last != decoderInvalidCode {
    				// code == hi is a special case which expands to the last expansion
    				// followed by the head of the last expansion. To find the head, we walk
    				// the prefix chain until we find a literal code.
    				c = r.last
    				for c >= r.clear {
    					c = r.prefix[c]
    				}
    				r.output[i] = uint8(c)
    				i--
    				c = r.last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/testing/quick/quick.go

    type CheckEqualError struct {
    	CheckError
    	Out1 []any
    	Out2 []any
    }
    
    func (s *CheckEqualError) Error() string {
    	return fmt.Sprintf("#%d: failed on input %s. Output 1: %s. Output 2: %s", s.Count, toString(s.In), toString(s.Out1), toString(s.Out2))
    }
    
    // Check looks for an input to f, any function that returns bool,
    // such that f returns false. It calls f repeatedly, with arbitrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    }
    // %output#0 corresponds to %k returned from "/DEVICE:0"
    // %output#1 corresponds to %k returned from "/DEVICE:1"
    // %output#2 corresponds to %l returned from "/DEVICE:2"
    // %output#3 corresponds to %l returned from "/DEVICE:3"
    // %output#4, %output#5 corresponds to %m and will be returned from "/DEVICE:4"
    // %output#6, %output#7 corresponds to %n and will have no device set
    ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/x86/ssa.go

    		opregreg(s, v.Op.Asm(), v.Reg(), v.Args[1].Reg())
    
    	case ssa.Op386ADDLcarry, ssa.Op386SUBLcarry:
    		// output 0 is carry/borrow, output 1 is the low 32 bits.
    		opregreg(s, v.Op.Asm(), v.Reg0(), v.Args[1].Reg())
    
    	case ssa.Op386ADDLconstcarry, ssa.Op386SUBLconstcarry:
    		// output 0 is carry/borrow, output 1 is the low 32 bits.
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = v.AuxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_side_effect.mlir

      %0, %1 = tf_executor.graph {
        %output_1, %token_1, %control_1 = tf_executor.NextIteration.Source : tensor<1xi32> {T = i32, device = ""}
        %output_2, %token_2, %control_2 = tf_executor.NextIteration.Source : tensor<1xi32> {T = i32, device = ""}
        tf_executor.NextIteration.Sink [%token_1] %output_1 : tensor<1xi32> {T = i32, device = ""}
        tf_executor.NextIteration.Sink [%token_2] %output_2 : tensor<1xi32> {T = i32, device = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 989 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    //  "\08\03\12\12\10\0b\1a\02\01\04\2a\06\0a\02\01\00\20\01\32\02\00\00\1a\02\01\04\22\04\00\01\02\03"
    //
    // output 1
    //  type: MAXIMAL
    //  tile_assignment_dimensions: 1
    //  tile_assignment_devices: 1
    // Serialized string:
    //  "\08\01\1A\01\01\22\01\01"
    //
    // -----
    
    // Tests tile sharding of outputs with number of splits that exeed number
    // of logical devices is not allowed.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

          }
          input_arg {
            name: "input"
            type: DT_INT32
          }
          output_arg {
            name: "output"
            type: DT_INT32
          }
          output_arg {
            name: "output_1"
            type: DT_INT32
          }
          output_arg {
            name: "output_2"
            type: DT_INT32
          }
        }
        node_def {
          name: "Add/y"
          op: "Const"
          attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradients.cc

                                const std::vector<Output>& outputs,
                                const std::vector<Output>& inputs,
                                std::vector<Output>* grad_outputs) {
      std::vector<Output> grad_inputs;
      grad_inputs.reserve(outputs.size());
      for (const Output& output : outputs) {
        grad_inputs.emplace_back(ops::OnesLike(scope, output));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    @InputFiles def inputFiles = project.layout.files()
    
                    @OutputDirectory File outputs1
                    @OutputDirectory File outputs2
    
                    @TaskAction void action() {
                        new File(outputs1, "output1.txt").text = "output1"
                        new File(outputs2, "output2.txt").text = "output2"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver_with_skipping.mlir

        %cst = stablehlo.constant dense<0.000000e+00>: tensor<10x1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top