Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,676 for input1 (0.11 sec)

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

          else:
            # Op has been registered, then we don't need to generate register code.
            return
    
        # Validates the function inputs match what are in the decorator.
        inputs = all_dec_args.get('inputs', [])
        attrs = all_dec_args.get('attrs', [])
        expected_args = [arg.split(':')[0] for arg in inputs + attrs]
        all_func_args = self.visit(node.args)
    
        if len(expected_args) != len(all_func_args):
          raise KeyError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            // When the `input` directory is created, we invalidate the VFS and stop watching since the missing snapshot now has been removed.
            // Though we don't consider the path `input` as an input to the build, since it is a parent of the declared input
            // `input/marker`. So we don't trigger a rebuild.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/output-shapes-attr.mlir

    func.func @main(%arg0: tensor<10xi32>) -> tensor<10xi32>
    attributes {tf.entry_function = {inputs = "input0", outputs = "output0"}} {
      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<10xi32>
      }
      func.return %graph : tensor<10xi32>
    }
    
    // CHECK:      node {
    // CHECK-NEXT:   name: "input0"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          key: "T"
    // CHECK-NEXT:     value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/InputPropertyAnnotationOverrideIntegrationTest.groovy

            InputDirectory | 'file("inputs")'
            InputFiles     | 'files("inputs")'
            Input          | '{ layout.projectDirectory.file("inputs/input").asFile.text }'
        }
    
    
        def "can override @#inputType.simpleName with @Internal"() {
            buildFile << """
                class InputBaseTask extends BaseTask {
                    @${inputType.name} def input
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    					// it must find at least one space to consume.
    					if !isSpace(inputc) && inputc != eof {
    						s.errorString("expected space in input to match format")
    					}
    					if inputc == '\n' {
    						s.errorString("newline in input does not match format")
    					}
    				}
    				for isSpace(inputc) && inputc != '\n' {
    					inputc = s.getRune()
    				}
    				if inputc != eof {
    					s.UnreadRune()
    				}
    			}
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. src/internal/fuzz/fuzz.go

    		if input.limit > remaining {
    			input.limit = remaining
    		}
    	}
    	return input, true
    }
    
    // sentInput updates internal counters after an input is sent to c.inputC.
    func (c *coordinator) sentInput(input fuzzInput) {
    	c.inputQueue.dequeue()
    	c.countWaiting += input.limit
    }
    
    // refillInputQueue refills the input queue from the corpus after it becomes
    // empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/init1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    is used instead.
    
    Operands are replicated inputs and packed inputs.
    
    replicated_inputs: each group of `n` inputs corresponds to an input for a single
    individual replica and is mapped to a single region argument. Inside one group
    the operands are matching in order the `devices` attribute. Each replicated
    input must have compatible shapes and types.
    packed_inputs: each input corresponds to an input broadcasted across all
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. test/init1.go

    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    		println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
    		println("numGC went", numGC, "to", numGC1)
    		panic("init1")
    	}
    }
    
    func send(c chan int) {
    	c <- 1
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

                  dependsOn "a"
                  inputs.dir "b"
                  outputs.file "build/b"
                  doLast {}
                }
                task c {
                  dependsOn "b"
                  inputs.dir "c"
                  outputs.file "build/c"
                  doLast {}
                }
                task d {
                  dependsOn "c"
                  inputs.dir "d"
                  outputs.file "build/d"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top