Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for input_float (0.15 sec)

  1. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Scope root = Scope::NewRootScope()
                       .ExitOnError()
                       .WithAssignedDevice(kDeviceName)
                       .WithXlaCluster("cluster_0");
    
      Output input_float =
          ops::Placeholder(root.WithOpName("input_float"), DT_FLOAT);
      Output input_i64 = ops::Placeholder(root.WithOpName("input_i64"), DT_INT64);
    
      Output begin_begin =
          ops::Placeholder(root.WithOpName("begin_begin"), DT_INT32);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

        // Calculate min/max statistics.
        const auto input_flat = input_tensor.flat<float>();
        Tensor *min_output = nullptr, *max_output = nullptr;
        OP_REQUIRES_OK(context, context->allocate_output("min", {}, &min_output));
        OP_REQUIRES_OK(context, context->allocate_output("max", {}, &max_output));
        min_output->scalar<float>().device(
            context->template eigen_device<CPUDevice>()) = input_flat.minimum();
        max_output->scalar<float>().device(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/HashTestUtils.java

            long value = random.nextLong();
            for (PrimitiveSink sink : sinks) {
              sink.putLong(value);
            }
          }
        },
        PUT_FLOAT() {
          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            float value = random.nextFloat();
            for (PrimitiveSink sink : sinks) {
              sink.putFloat(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top