Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for add_results (0.38 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

      module_op.walk([&results](func::CallOp call_op) {
        std::optional<QuantizationResult> result = GetQuantizationResult(call_op);
        if (result == std::nullopt) return WalkResult::skip();
    
        *results.add_results() = std::move(*result);
        return WalkResult::advance();
      });
    }
    
    // Populates non-quantized ops from `module_op` to `results`. After going
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(
          std::vector<std::unique_ptr<xla::AotCompilationResult>> aot_results,
          client_->CompileAheadOfTime(*result.computation, argument_layouts,
                                      build_options));
      TF_RET_CHECK(aot_results.size() == 1);
      return aot_results[0]->SerializeAsString();
    }
    
    absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
    XlaDeviceCompilerClient::LoadExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            def provider1 = setProvider("foo")
    
            when:
            source.addPendingCollection(provider1)
            source.realizePending()
            boolean addResult = source.add("foo")
            provider1.value = []
    
            then:
            addResult
            source.iterator().collect() == ["foo"]
        }
    
        def "adding is not ignored when an unrealized provider currently has the same value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // CHECK-DAG: %[[filter:.*]] = arith.constant dense<{{.*}}> : tensor<4x4xf32>
      // CHECK: %[[fc_result:.*]] = "tfl.fully_connected"(%arg0, %arg1, %[[unit]])
      // CHECK: %[[add_result:.*]] = tfl.add %[[fc_result]], %[[filter]]
      // CHECK: return %[[add_result]]
    }
    
    // CHECK-LABEL: @FuseFullyConnectedAddWithUnfusableRhs
    func.func @FuseFullyConnectedAddWithUnfusableRhs(%arg0: tensor<4x37xf32>, %arg1: tensor<4x37xf32>) -> tensor<4x4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %add_result = "tf.Add"(%computation, %computation) : (tensor<i32>, tensor<i32>) -> tensor<i32>
        // expected-error@+1 {{Input of TPUPartitionedOutputV2 must be in tpu computation.}}
        %partitioned_output:2 = "tf.TPUPartitionedOutputV2"(%add_result) {N = 2 : i64, partition_dims = []} : (tensor<i32>) -> (tensor<i32>, tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top