Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for output$1 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    //  "\08\03\12\12\10\0b\1a\02\01\04\2a\06\0a\02\01\00\20\01\32\02\00\00\1a\02\01\04\22\04\00\01\02\03"
    //
    // output 1
    //  type: MAXIMAL
    //  tile_assignment_dimensions: 1
    //  tile_assignment_devices: 1
    // Serialized string:
    //  "\08\01\1A\01\01\22\01\01"
    //
    // -----
    
    // Tests tile sharding of outputs with number of splits that exeed number
    // of logical devices is not allowed.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    // -----
    
    func.func @testSplitOpWithMismatchTensorTypeSplitDimOut1(%arg0 : tensor<16xf32>) -> (tensor<8xf32>, tensor<4xf32>) {
      %split_dim = arith.constant dense<0> : tensor<i32>
      // expected-error @+1 {{'tfl.split' op output #1 should be 'tensor<8xf32>'}}
      %0, %1 = "tfl.split"(%split_dim, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<16xf32>) -> (tensor<8xf32>, tensor<4xf32>)
      func.return %0, %1 : tensor<8xf32>, tensor<4xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        its predecessor:
    
        ```mlir
        %outputs1:2, %control1 = tf_executor.island wraps "tf.IteratorGetNext"(%arg)
          {_class = ["loc:@dataset_iterator_1"]}
        %outputs2:2, %control2 = tf_executor.island wraps "tf.Split"(%outputs0, %outputs1#1)
          {_class = ["loc:@dataset_iterator_1", num_split = 2 : i32}
        ```
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // `tfl.batch_matmul` when it accepts uniform quantized tensors.
    //
    // StableHLO Quantizer output:
    //   * input: per-tensor qi8
    //   * filter: per-channel qi8 for non-batching op, per-tensor for batching op.
    //   * output: per-tensor qi32
    // JAX Quantizer output:
    //   * input: per-tensor qi8
    //   * filter: per-channel qi8
    //   * output: per-tensor qi8
    //
    // Conditions for the `tfl.batch_matmul` conversion:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

              inputs={'x1': in_placeholder_1}, outputs={'output1': output_tensor_1}
          )
    
          in_placeholder_2, output_tensor_2 = self._create_simple_tf1_conv_model()
          sig_def_2 = signature_def_utils_impl.predict_signature_def(
              inputs={'x2': in_placeholder_2}, outputs={'output2': output_tensor_2}
          )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top