Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for add_input (0.09 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        Node* outside_compilation_node =
            lifted_arg_nodes_and_outside_compilation_nodes[i - original_arg_count]
                .second;
        node_def.add_input(absl::StrCat(outside_compilation_node->name(), ":", 0));
      }
      TF_ASSIGN_OR_RETURN(n, ReplaceNode(g, n, node_def));
    
      // Add edges from outside compilation nodes to call node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        auto signature_key_buf =
            builder_.CreateString(signature_def_data.signature_key);
        tflite::SignatureDefBuilder sig_def_builder(builder_);
        sig_def_builder.add_inputs(inputs_buf);
        sig_def_builder.add_outputs(outputs_buf);
        sig_def_builder.add_signature_key(signature_key_buf);
        sig_def_builder.add_subgraph_index(signature_def_data.subgraph_index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_StatefulTensor:$fw_input_cell_state,
        TFL_StatefulTensor:$bw_input_activation_state,
        TFL_StatefulTensor:$bw_input_cell_state,
    
        // Auxiliary input & weights.
        TFL_TensorOfOrNone<[F32, I8]>:$aux_input,
        // Auxiliary fw weights.
        TFL_TensorOfOrNone<[F32, I8]>:$fw_aux_input_to_input_weights,
        TFL_TensorOfOrNone<[F32, I8]>:$fw_aux_input_to_forget_weights,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top