Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for id_0 (0.24 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

      OutputList outputs;
      CreateSwitchN(root.WithOpName("switchn"), value, constant_7, 3, &outputs);
    
      Output id_0 = ops::Identity(root.WithOpName("id_0"), outputs[0]);
      Output id_1 = ops::Identity(root.WithOpName("id_1"), outputs[1]);
      Output id_2 = ops::Identity(root.WithOpName("id_2"), outputs[2]);
    
      FixupSourceAndSinkEdges(root.graph());
    
      PredicateMapTy predicate_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

            // CHECK: %[[ID_0:.*]] = "tf.IdentityN"(%[[ARG_0]])
            %id0 = "tf.IdentityN"(%arg0)
              : (tensor<!tf_type.resource<tensor<4xf32>>>) -> tensor<!tf_type.resource<tensor<4xf32>>>
            // CHECK-NEXT: %[[READ_0:.*]] = "tf.ReadVariableOp"(%[[ID_0]])
            // CHECK-SAME: (tensor<!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_util.h

      bool operator==(const DeviceId& other) const { return id() == other.id(); }
      bool operator!=(const DeviceId& other) const { return !(*this == other); }
    
     private:
      int id_;
    
      explicit DeviceId(int id) : id_(id) {}
    
      int id() const { return id_; }
    
      friend class DeviceInfoCache;
      friend class DeviceSet;
    };
    
    // A set of DeviceIds, represented as a bitmap.
    class DeviceSet {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

        });
    
    class CustomAggregatorOp : public OpKernel {
     public:
      explicit CustomAggregatorOp(OpKernelConstruction* context)
          : OpKernel(context) {
        OP_REQUIRES_OK(context, context->GetAttr("id", &id_));
    
        int calibration_method_value;
        int num_bins;
        float min_percentile;
        float max_percentile;
        OP_REQUIRES_OK(context, context->GetAttr("calibration_method",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

      // returns true.
      template <typename FunctionTy>
      static void Visit(Predicate* p, const FunctionTy& func);
    
     protected:
      explicit Predicate(int64_t id) : id_(id) {}
    
     private:
      const int64_t id_;
    
      Predicate(const Predicate&) = delete;
      void operator=(const Predicate&) = delete;
    };
    
    // Represents a logical conjunction of a set of predicates.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            def count = 9000
            buildFile << """
                task a() {
                    finalizedBy 'f'
                }
    
                task f() {
                    dependsOn "d_0"
                }
    
                def nextIndex
                ${count}.times {
                    nextIndex = it + 1
                    task "d_\$it"() { task ->
                        dependsOn "d_\$nextIndex"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/java/quickstart/groovy", files="build.gradle[tags=use-plugin-legacy]"]
    ====
    
    Plugins can be applied using a _plugin id_.
    In the above case, we are using the short name "java" to apply the link:{javadocPath}/org/gradle/api/plugins/JavaPlugin.html[JavaPlugin].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `indices` is a K-dimensional integer tensor, best thought of as a
    (K-1)-dimensional tensor of indices into `params`, where each element defines a
    slice of `params`:
    
        output[\\(i_0, ..., i_{K-2}\\)] = params[indices[\\(i_0, ..., i_{K-2}\\)]]
    
    Whereas in `tf.gather` `indices` defines slices into the `axis`
    dimension of `params`, in `tf.gather_nd`, `indices` defines slices into the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          !tf_res = type tensor<*x!tf_type.resource<tensor<32xf32>>>
    
          func @test(%arg0: !tf_res {tf.device = "/TPU:0"}) {
            tf_executor.graph {
              %control = tf_executor.island {
                %id0 = "tf.Identity"(%arg0) : (!tf_res) -> !tf_res
                tf_executor.yield
              }
              tf_executor.fetch %control : !tf_executor.control
            }
            return
          }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top