Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,497 for input0 (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    package norm
    
    import "unicode/utf8"
    
    type input struct {
    	str   string
    	bytes []byte
    }
    
    func inputBytes(str []byte) input {
    	return input{bytes: str}
    }
    
    func inputString(str string) input {
    	return input{str: str}
    }
    
    func (in *input) setBytes(str []byte) {
    	in.str = ""
    	in.bytes = str
    }
    
    func (in *input) setString(str string) {
    	in.str = str
    	in.bytes = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

      func.return %2 : tensor<3x2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @uniform_quantized_add_bias_not_const
    func.func @uniform_quantized_add_bias_not_const(%input1: tensor<3x2xi32>, %input2: tensor<2xi32>) -> tensor<3x2xi32> {
      %input_scales = "tf.Const"() { value = dense<2.0> : tensor<f32> } : () -> tensor<f32>
      %input_zps = "tf.Const"() { value = dense<4> : tensor<i32> } : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Input.java

     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Attached to a task property to indicate that the property specifies some input value for the task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_multiple_entry_points.mlir

      func.func @add(%arg0: tensor<?xf32> {tf_saved_model.index_path = ["input1"]}, %arg1: tensor<?xf32> {tf_saved_model.index_path = ["input2"]}) -> (tensor<?xf32> {tf_saved_model.index_path = ["result"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "input1:0,input2:0", outputs = "result:0"}, tf_saved_model.exported_names = ["add"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

      shape_0, shape_1 = tf.shape_n([op.inputs[0], op.inputs[1]])
      return [
          tf.compat.v1.nn.conv2d_backprop_input(
              shape_0,
              op.inputs[1],
              grad,
              strides=strides,
              padding=padding,
              dilations=dilations,
              data_format='NHWC'),
          tf.compat.v1.nn.conv2d_backprop_filter(
              op.inputs[0],
              shape_1,
              grad,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

        def setup() {
            INVOCATION_COUNT.set(0)
        }
    
        def "input artifact selection is restored when using the in-memory cache"() {
            def transform = registerTransform(IdentityTransform)
    
            def inputArtifact1 = file("input1/input.txt")
            inputArtifact1.text = "Hello"
    
            def inputArtifact2 = file("input2/input.txt")
            inputArtifact2.text = "Hello"
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. tensorflow/c/kernels/bitcast_op_test.cc

      DummyDevice dummy_device(nullptr);
      params.device = &dummy_device;
      params.op_kernel = kernel.get();
      gtl::InlinedVector<TensorValue, 4> inputs;
      inputs.emplace_back(input_tensor);
      params.inputs = inputs;
    
      OpKernelContext ctx(&params);
      kernel->Compute(&ctx);
      ASSERT_EQ(expected_code, ctx.status().code());
      if (expected_code == error::OK) {
        ASSERT_EQ(expected_shape, ctx.mutable_output(0)->shape())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

            
            input2 = getResourceFile("2.txt")
            output2 = signing.signatureType.fileFor(input2)
            input2Artifact = new DefaultPublishArtifact(input2.name, "Text File", "txt", null, null, input2)
            
            [output1, output2].each { output ->
                assert !output.exists() || output.delete()
            }
            
            assert input1.text && input2.text  // don't care what it is, just need some
        }
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/init0.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 init0
    
    // initialization cycles (we don't know the types)
    const (
    	s0 /* ERROR "initialization cycle: s0 refers to itself" */ = s0
    
    	x0 /* ERROR "initialization cycle for x0" */ = y0
    	y0 = x0
    
    	a0 = b0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalTaskWithNormalizedInputsIntegrationTest.groovy

        def "incremental task with NAME_ONLY inputs (matching file names and content) detects deleted file"() {
            def inputs = folderNames().collect { file("${it}/input.txt").createFile() }
    
            buildFile << incrementalTaskWithNameOnlyInputFiles(inputs)
            run INCREMENTAL_TASK_NAME
    
            when:
            inputs[1..2]*.delete()
            println "${inputs} exists: ${inputs*.exists()}"
            run INCREMENTAL_TASK_NAME, "--info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top