Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for merge_outputs (0.18 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    }
    
    // An implementation of TensorFlow bidrectional_dynamic_rnn with RNNCell.
    table BidirectionalSequenceRNNOptions {
      time_major:bool;
      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    }
    
    // An implementation of TensorFlow bidrectional_dynamic_rnn with RNNCell.
    table BidirectionalSequenceRNNOptions {
      time_major:bool;
      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    // An implementation of TensorFlow bidrectional_dynamic_rnn with RNNCell.
    table BidirectionalSequenceRNNOptions {
      time_major:bool;
      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    // LINT.IfChange
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

                                      Output(old_node, oidx), new_output);
          merged_output = merged_outputs[oidx] = xla_merge_op.output;
        }
    
        Node* dst = e->dst();
        int dst_idx = e->dst_input();
    
        s.graph()->RemoveEdge(e);
        s.graph()->AddEdge(merged_output.node(), merged_output.index(), dst,
                           dst_idx);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top