Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for input_handles (0.21 sec)

  1. tensorflow/compiler/jit/get_compiler_ir.h

    // `inputs_arg_shape_and_dtype` and `input_handles`.
    absl::StatusOr<std::string> GetCompilerIr(
        IrExportStage stage, ProcessFunctionLibraryRuntime* pflr,
        absl::string_view func_name, Device* dev, EagerContext* context,
        absl::Span<const ArgShapeAndDType> input_arg_shape_and_dtype,
        absl::Span<const TensorHandle* const> input_handles,
        CompilerArgSource compiler_arg_source);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/get_compiler_ir.cc

     * 'input_handles' in different cases.
     *
     * For TENSOR_SPEC case:
     *   - `input_arg_shape_and_dtype`: Contains the shape and dtype of
     * concrete_fn input args.
     *   - `input_handles`: Contains the concrete_fn.captured_input tensors.
     *
     * For CONCRETE_INPUT case:
     *   - `input_arg_shape_and_dtype`: it is empty.
     *   - `input_handles`: Contains all concrete_fn inputs tensors, including
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                inputHandler.removeStartupContext();
                outputHandler.removeStartupContext();
            }
    
            @Override
            public void stop() {
                outputHandler.stop();
                inputHandler.stop();
            }
    
            @Override
            public void disconnect() {
                outputHandler.disconnect();
                inputHandler.disconnect();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/eval_util.cc

        auto clean_tensor =
            MakeCleanup([tf_tensor] { TF_DeleteTensor(tf_tensor); });
        TFE_TensorHandle* input_handle = TFE_NewTensorHandle(tf_tensor, status);
        RETURN_FAILURE_IF_ERROR(status);
        auto clean_input_handle =
            MakeCleanup([input_handle] { TFE_DeleteTensorHandle(input_handle); });
        TFE_OpAddInput(op, input_handle, status);
        RETURN_FAILURE_IF_ERROR(status);
      }
    
      // Executes the TF operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 06:02:14 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/AbstractExecHandleBuilder.java

        public AbstractExecHandleBuilder setStandardInput(InputStream inputStream) {
            streamsSpec.setStandardInput(inputStream);
            this.inputHandler = new ForwardStdinStreamsHandler(inputStream);
            return this;
        }
    
        public StreamsHandler getInputHandler() {
            return inputHandler;
        }
    
        @Override
        public InputStream getStandardInput() {
            return streamsSpec.getStandardInput();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleBuilderTest.groovy

            builder.standardInput.read() < 0
            builder.inputHandler instanceof EmptyStdInStreamsHandler
        }
    
        def canAttachAStandardInputStream() {
            def inputStream = new ByteArrayInputStream()
    
            when:
            builder.standardInput = inputStream
    
            then:
            builder.standardInput == inputStream
            builder.inputHandler instanceof ForwardStdinStreamsHandler
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 29 07:54:38 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
      // def : Pat<(TensorListSetItem($input_handle, $index, $item)),
      //           (XlaDynamicUpdateSlice($input_handle, ExpandDims($item, 0),
      //              Concat(ExpandDims($index, 0), [0, 0, 0, ...])))>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.services.MessageBuilder;
    import org.apache.maven.api.services.MessageBuilderFactory;
    import org.codehaus.plexus.components.interactivity.InputHandler;
    import org.codehaus.plexus.components.interactivity.OutputHandler;
    import org.codehaus.plexus.components.interactivity.Prompter;
    import org.codehaus.plexus.components.interactivity.PrompterException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        @TaskAction
        public void setupProjectLayout() {
            UserInputHandler inputHandler = getEffectiveInputHandler();
            GenerationSettings settings = inputHandler.askUser(this::calculateGenerationSettings).get();
    
            boolean userInterrupted = inputHandler.interrupted();
            if (userInterrupted) {
                throw new BuildCancelledException();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    input_handle: The input list.
    element_shape: The shape of the uninitialized elements in the list. If the first
      dimension is not -1, it is assumed that all list elements have the same
      leading dim.
    leading_dims: The list of leading dims of uninitialized list elements. Used if
      the leading dim of input_handle.element_shape or the element_shape input arg
      is not already set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top