Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for weights (0.13 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[F32, I8]>:$fw_recurrent_to_output_weights,
    
        // Forward Cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_input_weights,
        // Optional Forward cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_forget_weights,
        // Optional Forward cell weights
        TFL_TensorOfOrNone<[F32, I8]>:$fw_cell_to_output_weights,
    
        // Forward Bias
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	}
    	return
    }
    
    func validateRouteDestinations(weights []*networking.RouteDestination, gatewaySemantics bool) (errs error) {
    	var totalWeight int32
    	for _, weight := range weights {
    		if weight == nil {
    			errs = multierror.Append(errs, errors.New("weight may not be nil"))
    			continue
    		}
    		if weight.Destination == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.unidirectional_sequence_lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    			}
    
    			if tt.expectedLocalityWeightedConfig && c.CommonLbConfig.GetLocalityWeightedLbConfig() == nil {
    				t.Errorf("cluster expected to have weighed config, but is nil")
    			}
    			if tt.expectClusterLoadAssignmenttoBeNil && c.LoadAssignment != nil {
    				t.Errorf("cluster expected not to have load assignmentset, but is present")
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUColocateSplitsPass()";
      let description = [{
        It is beneficial for performance to assign a `Split` op to the same device
        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top