Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for eraseOp (0.48 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        // Erase unused ops in the reverse order.
        rewriter.eraseOp(output_uniform_dequantize_call_op);
        rewriter.eraseOp(output_uniform_quantize_call_op);
        rewriter.eraseOp(combined_scale_multiply_op);
        rewriter.eraseOp(subtract_op);
        rewriter.eraseOp(other_conv_op);
        rewriter.eraseOp(op);
        rewriter.eraseOp(input_i8_to_f32_convert_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          }
    
          read_variable_op.erase();
          continue;
        }
    
        if (auto assign_variable_op = dyn_cast<TF::AssignVariableOp>(&op)) {
          Value resource = assign_variable_op.getResource();
          auto last_store = resource_handle_to_last_store_op[resource];
          // Previous store ops to same resource can be erased.
          if (last_store) last_store.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Remove unused message identification ops.
      if (communication_key_index == 0)
        for (auto op : compilation_key_ops) op->erase();
      if (communication_key_index == 0 || core_to_device_ordinal.empty())
        for (auto op : core_to_device_ordinal_op) op->erase();
    
      for (mlir::tf_device::LaunchOp tmp_host_launch_op : core_to_tmp_launch)
        RemoveOutsideCompilation(tmp_host_launch_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Erase original while op and temporary functions. Note, we use the non_tpu
      // function in the output graph.
      symbol_table.lookup(orig_callers.forward.getF())->erase();
      symbol_table.lookup(orig_callers.core_tpu.getF())->erase();
      symbol_table.lookup(orig_callers.backward.getF())->erase();
      orig_while_op.body_function().erase();
      orig_while_op.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                cst.getValueAttr());
            full_range_const = new_op.getOutput();
          }
          use.set(full_range_const);
        }
        if (cst.use_empty()) cst.erase();
      });
      return func;
    }
    
    // Helper method that returns the index of the tensor with name 'tensor_name'
    // in the list of tensor names 'tensors'. It allows excluding some indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK: "tf.opB"([[REPLICATE]]#0)
    
    // -----
    
    // TF produces Identity ops between TPUReplicatedOutput and
    // TPUPartitionedOutputV2 ops. This test ensures that they are erased
    // and not considered within the clustered computation. It also ensures that
    // the expected interleaving pattern is present in the output.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		cipherSuites:       []uint16{TLS_RSA_WITH_RC4_128_SHA},
    		compressionMethods: []uint8{compressionNone},
    		serverName:         expectedServerName,
    	}
    
    	serverConfig := testConfig.Clone()
    	// Erase the server's cipher suites to ensure the handshake fails.
    	serverConfig.CipherSuites = nil
    
    	c, s := localPipe(t)
    	go func() {
    		cli := Client(c, testConfig)
    		cli.vers = clientHello.vers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top