Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,676 for input1 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-input-shapes.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir %s
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    
    node {
      name: "func0"
      op: "func_name"
      input: "input"
    }
    
    library {
      function {
        signature {
          name: "func_name"
          input_arg {
            name: "arg0"
            type: DT_BOOL
          }
        }
        ret {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 01 22:43:47 UTC 2021
    - 491 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/normalization/InputNormalization.java

     * limitations under the License.
     */
    
    package org.gradle.normalization;
    
    /**
     * Input normalization configuration.
     *
     * Input normalization is used when Gradle tries to determine if two task inputs are different.
     * Gradle normalizes both inputs and the inputs are considered different if and only if the normalizations are different.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 975 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

          arg.kind = XlaCompiler::Argument::kConstant;
          arg.type = input->dtype();
          arg.shape = input->shape();
          arg.constant_value = *input;
        } else {
          // Normal inputs.
          TF_RET_CHECK(input->dtype() != DT_RESOURCE);
          if (input->NumElements() > 0) {
            arg.kind = XlaCompiler::Argument::kParameter;
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        rep.emitOpError(
            "TF2XLA TPU bridge input check: packed with number of inputs not 1.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      } else if (!rep.getIsPacked() && arity != num_replicas) {
        rep.emitOpError(
            "TF2XLA TPU bridge input check: number of inputs inconsistent.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion_test.go

    	}
    }
    
    func TestConvertSliceStringToDeletionPropagation(t *testing.T) {
    	tcs := []struct {
    		Input  []string
    		Output v1.DeletionPropagation
    	}{
    		{
    			Input:  nil,
    			Output: "",
    		},
    		{
    			Input:  []string{},
    			Output: "",
    		},
    		{
    			Input:  []string{"foo"},
    			Output: "foo",
    		},
    		{
    			Input:  []string{"bar", "foo"},
    			Output: "bar",
    		},
    	}
    
    	for _, tc := range tcs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

      %data_format = tfr.constant "NHWC" -> !tfr.attr
      %MaxPool = tfr.call @tf__max_pool(%input_, %stride, %filter, %padding, %explicit_paddings, %data_format) : (!tfr.tensor, !tfr.attr, !tfr.attr, !tfr.attr, !tfr.attr, !tfr.attr) -> (!tfr.tensor)
      tfr.return %MaxPool : !tfr.tensor
    // CHECK: tf__max_pool
    }
    
    // CHECK-LABEL: @tf__cast_float
    tfr.func @tf__cast_float(%input_: !tfr.tensor, %out_type: !tfr.attr{tfr.name="out_type"}) -> (!tfr.tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multi-output-feeds.pbtxt

      }
    }
    node {
      name: "z"
      op: "IdentityN"
      input: "w"
      input: "x"
      input: "y"
      input: "^var_add"
      attr {
        key: "T"
        value {
          list {
            type: DT_FLOAT
            type: DT_FLOAT
            type: DT_FLOAT
          }
        }
      }
    }
    node {
      name: "a"
      op: "Add"
      input: "z:1"
      input: "z:2"
      attr {
        key: "T"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      const llvm::MemoryBuffer* input =
          source_mgr->getMemoryBuffer(source_mgr->getMainFileID());
      std::string error;
      auto loc =
          mlir::FileLineColLoc::get(context, input->getBufferIdentifier(), 0, 0);
      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def actualDir = file("actualDir").createDir()
            file("symlink1").createLink(actualDir)
            file("symlink2").createLink(actualDir)
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.dir("symlink1")
                    inputs.dir("symlink2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     */
    public interface InputChanges {
        /**
         * Indicates if it was possible for Gradle to determine which input files were out of date compared to a previous execution.
         * Incremental inputs are unavailable when history is unavailable (i.e. this piece of work has never been executed before), or if there are changes to non-file input properties, or output files.
         * <p>
         * When <code>true</code>:
         * </p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top