Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for data_flow (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowParameters.java

     * limitations under the License.
     */
    
    package org.gradle.api.flow;
    
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for {@link FlowAction dataflow action} parameters.
     *
     * <p>
     * Parameter types should be interfaces, only declaring getters for {@link org.gradle.api.provider.Property}-like objects.
     * Example:
     * </p>
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:51:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

    import org.gradle.api.file.ArchiveOperations;
    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.process.ExecOperations;
    
    /**
     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_variable_ops_to_ml_program.cc

    #include <memory>
    #include <string>
    
    #include "absl/strings/str_cat.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Analysis/DataFlow/ConstantPropagationAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlowFramework.h"  // from @llvm-project
    #include "mlir/Dialect/MLProgram/IR/MLProgram.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

    ==============================================================================*/
    
    #include <memory>
    
    #include "llvm/ADT/BitVector.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Analysis/DataFlow/ConstantPropagationAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlowFramework.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. CITATION.cff

    abstract: TensorFlow is a machine learning system that operates at large scale and in heterogeneous environments. TensorFlow uses dataflow graphs to represent computation, shared state, and the operations that mutate that state. It maps the nodes of a dataflow graph across many machines in a cluster, and within a machine across multiple computational devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/image_grad_test.cc

      template <typename T>
      Tensor MakeData(const TensorShape& data_shape) {
        DataType data_type = DataTypeToEnum<T>::v();
        Tensor data(data_type, data_shape);
        auto data_flat = data.flat<T>();
        for (int i = 0; i < data_flat.size(); ++i) {
          data_flat(i) = T(i);
        }
        return data;
      }
    
      template <typename T>
      void MakeOp(const OpType op_type, const Tensor& x_data, const Input& y_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h"
    
    #include "llvm/ADT/STLExtras.h"
    #include "mlir/Analysis/DataFlow/SparseAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlowFramework.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Analysis/DataFlow/ConstantPropagationAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlow/SparseAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlowFramework.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowProviders.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Exposes build lifecycle events as {@link Provider providers} so they can be used as inputs
     * to {@link FlowAction dataflow actions}.
     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    public interface FlowProviders {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/flags.cc

           "If set, quantization passes will run and dump the result before HLO "
           "code generation."},
          {"sanitize_dataflow", &flags->sanitize_dataflow,
           "Enable DataFlow Sanitizer pass."},
          {"sanitize_abilists_dataflow", &flags->sanitize_abilists_dataflow,
           "Comma separated list of ABIList file paths."},
          {"gen_name_to_index", &flags->gen_name_to_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top